You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+7-4Lines changed: 7 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,10 +7,11 @@ A utility to automatically prepare structures from the PDB for molecular dynamic
7
7
*[X] Automatically download structures, sequences and metadata from the PDB and UNIPROT
8
8
*[X] Automatically fill missing loops with modeller
9
9
*[X] Automatically add missing atoms and fix non-standard residues with pdbfixer
10
-
*[X] Automatically propagate metadata through to finalised structure files
10
+
*[] Automatically propagate metadata through to finalised structure files
11
11
*[X] Automatically resolve steric clashes and minimise structures
12
+
*[X] Automatically trim together structures to be the same length
12
13
*[X] Run simple MD simulations for testing, validation and minimisation
13
-
*[] Create 'morph' trajectories with metadynamics
14
+
*[X] Create 'morph' trajectories with metadynamics
14
15
*[ ] AIIDA integration
15
16
16
17
## Installation
@@ -35,9 +36,11 @@ A utility to automatically prepare structures from the PDB for molecular dynamic
35
36
* If you already have a minimised structure, you can skip minimisation: `runmd structure.cif --traj_out traj.xtc --md_steps 5000 --step 100 -nomin -notest`
36
37
* Solvate the simulation box: `runmd structure.cif -o structure_minimised.cif --traj_out traj.xtc --md_steps 500 --step 10 -solv tip4pew`. tip3p, tip4pew and spce are supported. You can also add pressure coupling with `--pressure 1.0` (for 1 bar)
37
38
* Run with different force fields: `runmd structure.cif -o structure_minimised.cif --traj_out traj.xtc --md_steps 500 --step 50 -ff amber14` runs with amber14. AMOEBA is also available, and amber19 is available if you have a recent version of OpenMM.
38
-
* Finally, you may wish to fix the backbone in place and just equilibrate the side chains: `runmd structure.cif -o structure_minimised.cif --fix_backbone -solv tip4pew --notest`
39
+
* Fix the backbone in place and just equilibrate the side chains: `runmd structure.cif -o structure_minimised.cif --fix_backbone -solv tip4pew --notest`
40
+
* Use metadynamics to create a (non-physical!) guided md morph trajectory between two structures: `runmd pre.cif -m post.cif -o minimised_out.pdb`
41
+
* Note: if you have two files for the same structure which aren't aligned (e.g. they have slightly different starting/ending residues), you can trim the ends to align them: `aligntogether pre.cif post.cif pre_cropped.cif post_cropped.cif`
39
42
* Use `runmd --help` for a full list of parameters.
0 commit comments