md
Classes:
-
MD
–Class a wrapper around TIES_MD API that exposes a simplified interface.
MD
MD(sim_dir, sim_name='complex', fast=False)
Class a wrapper around TIES_MD API that exposes a simplified interface.
:param sim_dir: str, points to where the simulation is running i.e where the TIES.cfg file is. :param sim_name: str, the prefix to the input param and topo file i.e complex for complex.pdb/prmtop. :param fast: boolean, if True the setting is TIES.cfg will be overwritten with minimal TIES protocol.
Methods:
Source code in ties/md.py
16 17 18 19 20 21 22 23 24 25 26 27 28 29 |
|
run
run()
Wrapper for TIES_MD.TIES.run()
:return: None
Source code in ties/md.py
31 32 33 34 35 36 37 |
|
analysis
analysis(legs, analysis_cfg='./analysis.cfg')
Wrapper for TIES_MD.ties_analysis()
:param legs: list of strings, these are the thermodynamic legs of the simulation i.e. ['lig', 'com']. :param analysis_cfg: str, for what the analysis config file is called.
:return: None
Source code in ties/md.py
39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 |
|