IMP logo
IMP Reference Guide  develop.98ef8da184,2024/04/23
The Integrative Modeling Platform
mmcif/__init__.py
1 # Temporary hack to simplify development
2 from IMP.mmcif.util import * # noqa: F401, F403
3 
4 
5 __version__ = "20240423.develop.98ef8da184"
6 
8  '''Return the version of this module, as a string'''
9  return "20240423.develop.98ef8da184"
10 
11 def get_module_name():
12  '''Return the fully-qualified name of this module'''
13  return "IMP::mmcif"
14 
15 def get_data_path(fname):
16  '''Return the full path to one of this module's data files'''
17  import IMP
18  return IMP._get_module_data_path("mmcif", fname)
19 
20 def get_example_path(fname):
21  '''Return the full path to one of this module's example files'''
22  import IMP
23  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