IMP logo
IMP Reference Guide  develop.cb6747d2d1,2024/03/28
The Integrative Modeling Platform
sampcon/__init__.py
1 # All scripts that can be called from the imp_sampcon application
2 _all_commands = ["select_good", "show_stat", "plot_score", "exhaust"]
3 
4 
5 __version__ = "8673c86"
6 
8  '''Return the version of this module, as a string'''
9  return "8673c86"
10 
11 def get_module_name():
12  '''Return the fully-qualified name of this module'''
13  return "IMP::sampcon"
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("sampcon", 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("sampcon", fname)
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_version
Return the version of this module, as a string.
def get_module_name
Return the fully-qualified name of this module.