IMP logo
IMP Reference Guide  develop.031dafb4d2,2024/05/16
The Integrative Modeling Platform
spatiotemporal/__init__.py
1 from .create_DAG import create_DAG # noqa: F401
2 
3 
4 __version__ = "20240516.develop.031dafb4d2"
5 
7  '''Return the version of this module, as a string'''
8  return "20240516.develop.031dafb4d2"
9 
10 def get_module_name():
11  '''Return the fully-qualified name of this module'''
12  return "IMP::spatiotemporal"
13 
14 def get_data_path(fname):
15  '''Return the full path to one of this module's data files'''
16  import IMP
17  return IMP._get_module_data_path("spatiotemporal", fname)
18 
19 def get_example_path(fname):
20  '''Return the full path to one of this module's example files'''
21  import IMP
22  return IMP._get_module_example_path("spatiotemporal", fname)
def get_data_path
Return the full path to one of this module's data files.
def get_example_path
Return the full path to one of this module's example files.
def get_module_version
Return the version of this module, as a string.
def get_module_name
Return the fully-qualified name of this module.