htmd.simlist module#
HTMD can handle a large amount of simulations. Simulation lists allow to create a simple list containing all relevant information about the simulations to later perform any type of analysis.
- class htmd.simlist.Frame(sim, piece, frame)#
Bases:
objectClass used for referencing a specific frame of a
Simobject object.- Parameters:
- frame#
- piece#
- sim#
- class htmd.simlist.Sim(trajf, topology=None, inputf=None, _simid=None, _parent=None, _input=None, _trajectory=None, _molfile=None, _numframes=None)#
Bases:
objectInformation on a single simulation trajectory.
This class is used for storing information related to simulations. This information includes the path to the simulation, the path to a structure file (pdb) which corresponds to the simulation, the folder containing the input files used to generate the simulation (useful for adaptive), the parent of the simulation (if it was filtered it will point to the original simulation) and a unique simulation id.
- toHDF5(h5group)#
Write this simulation’s fields into an open HDF5 group.
- htmd.simlist.simfilter(sims, outfolder, filtersel, njobs=None)#
Filter a list of simulations generated by
simlist().Writes new trajectories containing only the desired atoms to a new directory.
- Parameters:
sims (
list|ndarray) – A simulation list produced bysimlist().outfolder (
str) – The folder in which to write the modified trajectories.filtersel (
str|ndarray) – An atom selection string, a boolean mask, or an integer index array (seeMolecule.atomselect) describing the atoms to keep.njobs (
int|None) – Number of parallel jobs to spawn for filtering. If None, uses the value from htmd.config.
- Returns:
fsims – A list of filtered simulations.
- Return type:
Examples
>>> sims = simlist(glob('data/*/'), glob('input/*/structure.pdb')) >>> fsims = simfilter(sims, 'filtered', filtersel='not water')
- htmd.simlist.simlist(datafolders, topologies, inputfolders=None)#
Create a list of simulations.
- Parameters:
datafolders (
str|list) – A list of directories (or a single directory), each containing a single trajectory.topologies (
str|list) – A list of topology files or folders containing a topology file corresponding to the trajectories indatafolders. Can also be a single path to a structure that applies to all trajectories. If the single path is a folder, topology files will be auto-detected in that folder.inputfolders (
str|list|None) – A list of directories (or a single directory), each containing the input files used to produce the trajectories indatafolders.
- Returns:
sims – A list of simulations.
- Return type:
Examples
>>> simlist(glob('./test/data/*/'), './test/data/0/') >>> simlist(glob('./test/data/*/'), glob('./test/input/*/'), glob('./test/input/*/')) >>> simlist(glob('./test/data/*/'), glob('./test/input/*/*.pdb'), glob('./test/input/*/'))
- htmd.simlist.simmerge(simlist1, simlist2)#
Merge two simlists by updating their
simidfields.