IMP Reference Guide
2.12.0
The Integrative Modeling Platform
|
A space to add temporary classes while experimenting without forcing you to create your own module. More...
A space to add temporary classes while experimenting without forcing you to create your own module.
No classes should ever be committed as part of the scratch module.
It also provides a good module to write classes in that are used for demonstrating bugs in IMP as developers can easily drop the test classes into their own copy of scratch.
Author(s):
Maintainer:
License: None
Publications:
Standard module functions | |
All | |
std::string | get_module_version () |
std::string | get_module_name () |
std::string | get_data_path (std::string file_name) |
Return the full path to one of this module's data files. More... | |
std::string | get_example_path (std::string file_name) |
Return the full path to one of this module's example files. More... | |
std::string IMP::scratch::get_data_path | ( | std::string | file_name | ) |
Return the full path to one of this module's data files.
To read the data file "data_library" that was placed in the data
directory of this module, do something like
This will ensure that the code works both when IMP is installed or if used via the setup_environment.sh
script.
std::string IMP::scratch::get_example_path | ( | std::string | file_name | ) |
Return the full path to one of this module's example files.
To read the example file "example_protein.pdb" that was placed in the examples
directory of this module, do something like
This will ensure that the code works both when IMP is installed or if used via the setup_environment.sh
script.