IMP logo
IMP Reference Guide  2.13.0
The Integrative Modeling Platform
mmcif/__init__.py
1 # Temporary hack to simplify development
2 from IMP.mmcif.util import *
3 
4 
6  '''Return the version of this module, as a string'''
7  return "2.13.0"
8 
9 def get_module_name():
10  '''Return the fully-qualified name of this module'''
11  return "IMP::mmcif"
12 
13 def get_data_path(fname):
14  '''Return the full path to one of this module's data files'''
15  import IMP
16  return IMP._get_module_data_path("mmcif", fname)
17 
18 def get_example_path(fname):
19  '''Return the full path to one of this module's example files'''
20  import IMP
21  return IMP._get_module_example_path("mmcif", fname)
def get_module_version
Return the version of this module, as a string.
def get_example_path
Return the full path to one of this module's example files.
def get_data_path
Return the full path to one of this module's data files.
def get_module_name
Return the fully-qualified name of this module.
Utility functions for IMP.mmcif.
Definition: mmcif/util.py:1