drMD: Molecular Dynamics for Protein Scientists
Project description
:medical_symbol: drMD :medical_symbol:
Automated workflow for running molecular dynamics simulations with Amber and Openmm
GitHub Installation
We reccomned that you use the following steps to install drMD:
- Clone this repository
git clone https://github.com/ESPhoenix/drMD.git
- Create and activate conda environment
conda create -n drMD python=3.10
conda activate drMD
- Install AmberTools (needs to be before OpenMM) with conda
conda install -c conda-forge ambertools=23
- Install OpenMM with conda
conda install -c omnia openmm
- Install OpenBabel with conda
conda install -c conda-forge openbabel
- Install other python libraries with pip
pip install -r requirements.txt
Pip Installation
If you want to intergate drMD into a python-based pipeline, you can install drMD with pip and use it as a python module:
- Create and activate conda environment
conda create -n drMD python=3.10
conda activate drMD
- Install drMD with pip
pip install drMD
- Install AmberTools (needs to be before OpenMM) with conda
conda install -c conda-forge ambertools=23
- Install OpenMM with conda
conda install -c omnia openmm
- Install OpenBabel with conda
conda install -c conda-forge openbabel
Usage
Now that you have sucessfully set up the dependancies for drMD, you are nearly ready to run some biomolecular simulations!
If you have used the GitHub installation method, you can run drMD using the following command:
python drMD.py --config config.yaml
If you have used the Pip installation method, you can import drMD as a python module, and as following:
import drMD
myBatchConfig = "/path/to/config.yaml"
drMD.main(myBatchConfig)
This config file contains all of the user inputs drMD needs to run a series of biomolecular simulations. The following section will detail the correct formatting of this config.yaml file
Config syntax
The config.yaml file is in the YAML format (https://en.wikipedia.org/wiki/YAML) Inputs are grouped by theme and are stored as nested dictionaries and lists The next few sections will detail the correct formatting of the config.yaml file
pathInfo
The pathInfo entry in the config file is a dictionary containing two parameters:
-
inputDir: (DirectoryPath) This is the absoloute path towards a directory containing PDB files that will be used as starting points for your simulations.
:medical_symbol: To Perform Replicate simulations, simply create copies of your starting PDB files in the inputDir, with each copy named with a unique number. For example, your inputDir could contain my_protein_1.pdb, my_protein_2.pdb, etc.
-
outputDir: (DirectoryPath) This is the absoloute path towards a directory that you want your drMD outputs to be written to.
:medical_symbol: The outputDir will be created if it does not already exist at the point of running drMD
:medical_symbol: Within outputDir, a directory will be created for each PDB file contained in inputDir, in this document, these subdirectories will be refered to as runDirs
Example pathInfo:
pathInfo:
inputDir: "/home/esp/scriptDevelopment/drMD/01_inputs"
outputDir: "/home/esp/scriptDevelopment/drMD/02_outputs"
hardwareInfo
This config entry tells drMD about your computer hardware and how you want to use it to run your simulations The hardwareInfo entry in the config file is a dictionary containing three parameters:
-
platform: (str) This is the platform that will be used to run simulations in OpenMM. Accepted arguments for platform are "CUDA", "OpenCL", and "CPU"
:medical_symbol: If you have access to GPU acceleration using CUDA, we reccomend this option. If you don't but have access through OpenCL, this is a close second. If you don't have a GPU you can use the CPU option, this will be a lot slower.
-
paralellCPU: (int) This is the number of simulations that will be run in paralell
-
subprocessCpus: (int) This is the number of cpu cores that will be allocated to each simulation.
:medical_symbol: The total CPU usage will be parallelCPU * subprocessCpus, so make sure you have enough CPUs when you set these parameters
Example hardwareInfo:
hardwareInfo:
parallelCPU: 16
platform: "CUDA"
subprocessCpus: 2
This will use CUDA git achive GPU acceleration and run 16 simulations in paralell using 2 cores each for a total useage of 32 cores.
miscInfo
This section allows you to set some general options for your simulations:
-
pH: (int or float) This is the pH of your simulation, this will affect the protonation states of your protein and any ligands present in your simulation
-
firstAidMaxRetries: (int) This is the maximum number of times that drMD will attempt to recover from an error in a simulation
:medical_symbol: This option can be very helpful for rescuing crashed simulations. However don't rely on it too much. If your simulation keeps crashing you may want to reduce the temperature or timestep parameters instead to make it more stable
-
boxGeometry: (str) This is the shape of the solvation box that will be used in your simulations. Accepted arguments for boxGeometry are *"cubic" or "octahedral"
-
writeMyMethodsSection: (bool) If set to TRUE, drMD will automatically write a methods section for you to use in your publications or thesis.
:medical_symbol: drMD methods sections contain all of the information one might need to replicate your simulations. The formatting of these methods section may be too robotic and repetative for you, feel free to reformat them as you see fit.
Example miscInfo:
miscInfo:
pH: 7.4
firstAidMaxRetries: 10
boxGeometry: "cubic"
writeMyMethodsSection: True
Simulations will be run with a pH of 7.4 in a cubic solvation box. The maximum number of first-aid retries will be 10. A methods section will automatically be generated.
ligandInfo
The ligandInfo entry in the config file is optional and may be used if your PDB files have organic ligand or cofactors. These small molecules will not have parameters in the AMBER forcefield, drMD will run an automated protocol to generate these parameters for you. To do this, you will need to tell drMD some things about each ligand you whish tp simulate.
:medical_symbol: The ligandInfo entry is optional. drMD will automatically detect ligand in your PDB files. It will also detect parameter files in your input directory. If you have frcmod and mol2 files for your ligand already made, they must be located in your inputDir
ligandInfo is a list of dictionaries that contain the following parameters:
-
ligandName: (str) This is the three letter name of the ligand, this will be used to match the residue names in your PDB files
-
protons: (bool) This is a to tell drMD whether you have protons on your ligand. If set to FALSE, drMD will run an automated protonation protocol to add protons to your ligand
:medical_symbol: The automatic protonation protocol only works reliably for simple organic ligands.
:medical_symbol: For more complex ligand, we recommended that you manually add protons in your input PDB file prior to running drMD
-
charge: (int) This is the formal charge of the ligand
-
toppar: (bool) This is to tell drMD whether you have an frcmod file for your ligand already made. If you already have one, it must be located in the 01_ligand_parameters directory within your outputDir
-
mol2: (bool) This is to tell drMD whether you have a mol2 file for your ligand already made. If you already have one, it must be located in the 01_ligand_parameters directory within your outputDir
Example ligandInfo:
ligandInfo:
- ligandName: "FMN"
protons: True
charge: -1
toppar: False
mol2: False
- ligandName: "TPA"
protons: True
charge: -2
toppar: False
mol2: False
This ligandInfo tells drMD to expect two ligands: FMN and TPA. FMN has a formal charge of -1 and TPA has a formal charge of -2. Both ligands already have protons, so drMD will not add any. For both ligands the toppar and mol2 parameters are set to False, drMD will automatically generate these files for you
simulationInfo
This is the real meat and potatoes of the drMD config file.
The simulationInfo entry in the config file is a list of dictionaries containing information about each simulation.
Each simulation detailed in simulationInfo will be run in sequence, with the output of the previous simulation being the starting point for the next simulation.
Selecting Simulation Type
Each simulation dictionary contains the following parameters:
-
stepName: This is the name of the step that will be used to create a subdirectory in the runDir, we reccomend prefixing these names with numbers to make them order nicely
-
simulationType: (str) This is the type of simulation that will be run. Accepted arguments are:
- "EM": This will run a steepest-decent Energy Minimisation step.
:medical_symbol: We reccomended that you run one of these steps before any other simulation steps
- "NVT": This will run an NVT (constant volume) molecular dynamics simulation
- "NPT": This will run an NPT (constant pressure) molecular dynamics simulation
:medical_symbol: For the majority of protein simulations, the NPT ensemble is used for production MD simulations, while the NVT ensemble is only used in equilibration steps
- "META": This will run a Metadynamics simulation (see later on for more details)
Selecting simulation temperature
For most simulations, a constant temperature is used. In this case the following parameter is required:
- temperature: (int) This is the temperature of the simulation in Kelvin
If you wish to change the temperature throughout the simulation, the following parameter is required:
- temperatureRange: (list of int) This is a list of integers (again, in Kelvin) that will be used to change the temperature throughout the simulation.
Energy Minimisation Pararameters
For Energy Minimisation steps, the following additional parameters are required:
- maxIterations: (int) This is the maximum number of iterations that will be run in the Energy Minimisation step If this parameter is set to -1, the step will run until the energy converges Example Energy Minimisation syntax:
simulationInfo:
- stepName: "01_energy_minimisation"
type: "EM"
temp: 300
maxIterations: -1
This will run a energy minimisation until the energy converges
Generic Simulation Parameters
For "normal" MD simulations using NVT or NpT ensembles, as well as for Metadynamics simulations, the following additional parameters are required:
-
duration: (str) This is the duration of the simulation step, as a string "int unit" eg. "1000 ps"
-
timestep: (str) This is the timestep of the simulation, as a string "int unit" eg. "2 fs"
-
logInterval: (str) This is the frequency that the simulation will write to file using built-in OpemMM reporters. As a string "int unit" eg. "100 ps"
Example NVT simulation syntax:
simulationInfo:
- stepName: "02_NVT_pre-equilibraition"
type: "NVT"
duration: "100 ps"
timestep: "2 fs"
temp: 300
logInterval: "10 ps"
This will run a 100 ps NVT molecular dynamics simulation with a timestep of 2 fs, a temp of 300 and a logInterval of 10 ps
Adding Restraints with drMD
If you whish to perform simulations with restraints, the following additional parameters are required:
- restraintInfo: This is a list of dictionaries containing information about each restraints.
Within the restraintInfo list, you must provied at least one dictionary that contains the following parameters:
-
restraintType: (str) This is the type of restraints that will be added. Accepted arguments are: "distance", "angle", "dihedral", "position"
-
parameters: (dict) This is a dictionary containing the parameters for the restraints.
Within the parameters dictionary, all restraint types require the following parameter:
- k : (int) This is the force constant of the restraint (int), given in kJ/mol A^-2
Additional entries in the parameters dictionary depend on the type of restraints:
-
r0: (int or float) Required for distance restraints. This is the distance in Angstroms that the restraint should be applied to
-
theta0: (int or float) Required for angle restraints. This is the angle in degrees that the angle should be constrained to
-
phi0: (int or float) Required for torsion restraints. This is the angle in degrees that the dihedral should be constrained to
All restraints require the selection parameter. This tells drMD what atoms to apply the restraint to - selection: (list of dicts) This is a dictionary containing information on the selection of atoms that the restraints will be applied to.
:medical_symbol: The selection method is shared between multiple different inputs in the drMD config file. This is described in more detail in the next section
Example restraints syntax:
restraints:
- restraintType: "position"
selection:
keyword: "protein"
parameters:
k: 1000
- type: "distance"
selection:
keyword: "custom"
customSelection:
- {CHAIN_ID: "A", RES_NAME: "ALA", RES_ID: 1, ATOM_NAME: "CA"}
- {CHAIN_ID: "A", RES_NAME: "ALA", RES_ID: 2, ATOM_NAME: "CA"}
parameters:
k: 1000
r0: 3
This example will add the following restraints:
- Position restraints to the protein atoms with a force constant of 1000 kJ/mol
- A 3 Angstrom distance restraint between the CA atoms of residues 1 and 2 of the protein, with a force constant of 1000 kJ/mol
drMD Selection syntax
When creating restraints, metadynamics bias variables or running post-simulation clustering, you will need to specify the selection of atoms that the restraints will be applied to. To do this, you will need to supply a "selection" dictionary. This dictionary must contain the following parameter:
- keyword: (str) This is the keyword that will be used to specify the selection. Accepted arguments are:
- "protein" : This will select all protein atoms in your system
- "water" : This will select all water molecules in your system
- "ions": This will select all ions in your system
- "ligand" : This will select all non-protein, non-water and non-ion atoms in your system
- "custom" : This will select all atoms that match the customSelection
Example use of keywords in the selection dictionary:
selection:
keyword: "water"
This will select all water molecules in your system
If you have used the custom keyword, you will need to use an additional parameter the selection dictionary:
-
customSelection: This is a list of dictionaries containing details of the atoms that will be selected. Each dictionary in the list must contain the following parameters:
- CHAIN_ID: (str, list of str, or "all") This is the chain ID of the atom to be selected
- RES_NAME: (str, llist of str, or "all") This is the three-letter residue name of the atom to be selected
- RES_ID: (int, list of int, or "all") This is the residue ID of the atom to be selected
- ATOM_NAME: (str, list of str, or "all") This is the atom name of the atom to be selected
For the above parameters:
- if a single string (or int for RES_ID) is provided, the selection will match that value for the given parameter
- if a list is provided, the selection will match any value in the list for the given parameter
- if the wildcard string "all" is provided, the selection will match all values for the given parameter
WARNING: PLEASE DON'T CALL ANY OF YOUR RESIDUE NAMES "ALL" AS THIS WILL CAUSE PROBLEMS
:medical_symbol: This selection method is used to match atoms using columns of your PDB files. To work out how to identify what inputs you need to select your atoms of interest, simply open your input PDB file in PyMOL and use labels to identify the relavent CHAIN_ID, RES_NAME, RES_ID, and ATOM_NAME values
Example customSelection syntax, (this is probably more complex than you will need, but shows off what you can do):
selection:
keyword: "custom"
customSelection:
- {CHAIN_ID: ["A","B"], RES_NAME: "all", RES_ID: "all", ATOM_NAME: "CA"}
- {CHAIN_ID: "A", RES_NAME: "SER", RES_ID: "131", ATOM_NAME: ["CB", "HB1", "HB2", "OG", "HG1"]}
- {CHAIN_ID: "C", RES_NAME: "FMN", RES_ID: "all", ATOM_NAME: "all"}
In the above example, a selection containing the following:
- all CA atoms in chains A and B
- the atoms CB, HB1, HB2, OG, and HG1 in residue Ser131 in chain A
- all atoms in the residue FMN in chain C
Running Metadynamics with drMD
To run a metadynamics simulation, first set the simulationType to "META".
Once you have selected your simulationType, you will need to include an additional metaDynamicsInfo dictionary in your simulation dictionary:
- metaDynamicsInfo: This is a dictionary containing the parameters for the Metadynamics simulation,
Within the metaDynamicsInfo dictionary, you must provide the following parameters:
-
height: (int) This is the height parameter used in the Metadynamics simulation
-
biasFactor: (int) This is the bias factor parameter used in the Metadynamics simulation
-
frequency: (int) How often (in time steps) gaussians will be added to the bias potential
-
biases: (list of dicts) This is a list of dictionaries containing information about each biasVariable.
Within each dictionary in biases you must provide the following parameters:
- biasVar: (str) This is the type of biasVariable that will be added.
Accepted arguments for biasVar are "RMSD", "torsion" "distance" and "angle"
-
minValue: (float) This is the minimum value of the biasVariable.
-
maxValue: (float) This is the maximum value of the biasVariable.
-
biasWidth: (float) This determines the width of gaussians added to the bias potential
-
selection: (dict) This is a dictionary containing information on the selection of atoms that the biasVariable will be applied to. The selection syntax is identical to that used for the restraints. (described above)
:medical_symbol: Depending on the type of bias variable, different numbers of atoms must be selected:
- Distance bias variables require two atoms to be selected
- Angle bias variables require three atoms to be selected
- Torsion bias variables require four atoms to be selected
:medical_symbol: You will also need to specify at least one biasVariable for the simulation to sample. You can specify as many biasVariables as you wish, with one dictionary per biasVariable
Example MetaDynamics syntax:
metaDynamicsInfo:
height: 2
biasFactor: 5
frequency: 50
biases:
- biasVar: "RMSD"
minValue: 0
maxValue: 10
biasWidth: 1
selection:
keyword: "backbone"
- biasVar: "torsion"
selection:
keyword: "custom"
customSelection:
- {CHAIN_ID: "A", RES_NAME: "ALA", RES_ID: 1, ATOM_NAME: "CA"}
- {CHAIN_ID: "A", RES_NAME: "ALA", RES_ID: 2, ATOM_NAME: "CA"}
- {CHAIN_ID: "A", RES_NAME: "ALA", RES_ID: 3, ATOM_NAME: "CA"}
- {CHAIN_ID: "A", RES_NAME: "ALA", RES_ID: 4, ATOM_NAME: "CA"}
This example will add a RMSD bias to the backbone of the protein and a torsion bias between the CA atoms of residues 1, 2, 3, and 4 of the protein
Post-simulation processing
After all of your simulations have been run, drMD contains some simple utilities for organising your output files and deleting any unwanted files.
If you want to do any post-processing, you will need to provide the following parameter in your config file:
- postSimulationInfo: (dict) This is a dictionary containing the parameters for the post-simulation processing
If you wish to collect PDB files that represent the last frame of each simulation, you may include the following parameter in postSimulationInfo:
-
endpointInfo: (dict) This is a dictionary containing the parameters the following parameters:
-
stepNames: (list) This is a list of strings containing the names of the steps in the simulation, these should match the stepNames that you have used in your simulationInfo dictionary (described above). Endpoint PDB files will be gathered for these steps
-
removeAtoms: (list) This is a list of dictionaries containing the selections of atoms to be removed from the PDB files. The format for these selections is the same as that used for the restraints, metadynamics, etc. (described above)
-
Molecular Dyamics simulations can generate very large output files that can become rather unweildy and difficulat to anaylse. One way to quickly see the most important parts of your simulation is to perform clustering on your simulation trajectories. To do this with drMD, include the following parameter in your config file:
-
clusterInfo: (dict) This is a dictionary containing the parameters following parameters:
- stepNames: (list) This is a list of strings containing the names of the steps in the simulation, these should match the stepNames that you have used in your simulationInfo dictionary (described above). Clustering will be performed on trajectories of these steps
- nClusters: (int) This is the number of clusters PDB files that will be generated
- clusterBy: (list) This is a list of selections of atoms (described above) to cluster on.
:medical_symbol: By selecting only the parts of our system that you are interested in with the clusterBy parameter, you can generated cluster PDB files where these atoms are most separated by RMSD.
- collateVitalsReports: (bool) If True, will collate vitals reports from the trajectories generated by the MD simulations
Advanced YAML-ing with variables
If you are running multiple simulation steps that share the same parameters, you can use variables in the YAML config file. This will most commonly come up when you are applying position restraints during equilibriation steps. Below is a standard syntax for a pair of equilibiation steps:
simulationInfo:
- stepName: "01_NVT_pre-equilibraition"
simulationType: "NVT"
duration: "100 ps"
timestep: "4 fs"
heavyProtons: True
temperature: 300
logInterval: "10 ps"
restraintInfo:
- restraintType: "position"
parameters:
k: 1000
selection:
keyword: "protein"
- restraintType: "position"
selection:
keyword: "ligand"
parameters:
k: 1000
- stepName: "02_NPT_pre-equilibraition"
simulationType: "NPT"
duration: "100 ps"
timestep: "4 fs"
heavyProtons: True
temperature: 300
logInterval: "10 ps"
restraintInfo:
- restraintType: "position"
parameters:
k: 1000
selection:
keyword: "protein"
- restraintType: "position"
selection:
keyword: "ligand"
parameters:
k: 1000
Instead of repeating the restraintsInfo section each time, equilibriumRestraints can be defined as a variable, then re-used in each equilibriation step:
equilibriationRestraints: &equilibriationRestraints
- restraintType: "position"
parameters:
k: 1000
selection:
keyword: "protein"
- restraintType: "position"
selection:
keyword: "ligand"
parameters:
k: 1000
simulationInfo:
- stepName: "01_NVT_pre-equilibraition"
simulationType: "NVT"
duration: "100 ps"
timestep: "4 fs"
heavyProtons: True
temperature: 300
logInterval: "10 ps"
restraintInfo: *equilibriationRestraints
- stepName: "02_NPT_pre-equilibraition"
simulationType: "NPT"
duration: "100 ps"
timestep: "4 fs"
heavyProtons: True
temperature: 300
logInterval: "10 ps"
restraintInfo: *equilibriationRestraints
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file drMD-1.0.0.tar.gz
.
File metadata
- Download URL: drMD-1.0.0.tar.gz
- Upload date:
- Size: 10.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.10.13
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1d4c54e4d4c46230c58da298c50cc3be143e694582ff199fd33b869bdeffb532 |
|
MD5 | 2293725e96c9b743745ebfdbb4607d34 |
|
BLAKE2b-256 | 9205d95c9e4b33de5125537b7a12b82c7f16282f0cd0c7c95d75c6643f4dc4a9 |
File details
Details for the file drMD-1.0.0-py3-none-any.whl
.
File metadata
- Download URL: drMD-1.0.0-py3-none-any.whl
- Upload date:
- Size: 9.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.10.13
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f9b82f8b90dab21098464c5a0b4bc69992b36733f1e8a677c21f7ade183f16a2 |
|
MD5 | 4757eb7f72b1309e388ef54d44d8c9bd |
|
BLAKE2b-256 | 7ed765c38eec263d762f74fda8a5ca8ed41af35249591aa6e52b25f24317474b |