IMP logo
IMP Reference Guide  develop.50fdd7fa33,2025/09/05
The Integrative Modeling Platform
emseqfinder/__init__.py
1 # All scripts that can be called from the emseqfinder application
2 _all_commands = ["batch", "predict"]
3 
4 
5 __version__ = "9c6ac2a"
6 
8  '''Return the version of this module, as a string'''
9  return "9c6ac2a"
10 
11 def get_module_name():
12  '''Return the fully-qualified name of this module'''
13  return "IMP::emseqfinder"
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("emseqfinder", 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("emseqfinder", fname)
def get_module_name
Return the fully-qualified name of this module.
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_example_path
Return the full path to one of this module's example files.