menger.data.files
This module provides paths to example data files used in the menger package.
The data files include: - MDAnalysis logo text file - Tubulin chain A trajectory in DCD format - Tubulin chain A structure in PDB format
Usage
The files can be accessed directly by importing their path constants:
>>> from menger.data.files import TUBULIN_CHAIN_A_PDB
>>> print(TUBULIN_CHAIN_A_PDB) # prints full path to PDB file
Available Files
- MDANALYSIS_LOGOPath
Path to MDAnalysis logo text fileTUBULIN_CHAIN_A_DCD : Path Path to example DCD trajectory file of tubulin chain A
- TUBULIN_CHAIN_A_PDBPath
Path to example PDB structure file of tubulin chain A
Notes
The files are accessed using Python’s importlib.resources to ensure platform-independent and installation-safe file access.