![]() Informational and File Sharing ServerModeling of Macromolecular Systems | |
Tutorial 1: Molecular dynamics simulation of protein Energy minimizationWe will run two stage energy minimization of our system. In the first stage
we will minimize water positions keeping protein fixed. And in the second stage the whole system will be minimized.
You should use control data files min1.in
and min2.in when running sander (program which
carries out energy minimization and molecular dynamics). &cntrl imin=1, maxcyc=5000, ncyc=2500, cut=10.0, ntb=1, ntc=1, ntf=1, ntpr=10, ntr=1, restraintmask=':1-500', restraint_wt=2.0 /
Information in the input file:
So, run sander to perform minimization stage 1: sander -O -i min1.in -p protein.prmtop -c protein.inpcrd -o protein_min1.out -r protein_min1.rst -ref protein.inpcrd
File usage:
Here is the min2.in: energy minimization stage 2&cntrl imin=1, maxcyc=10000, ncyc=5000, cut=10.0, ntb=1, ntc=1, ntf=1, ntpr=10, / Use min2.in and protein_min1.rst to run minimization stage 2: sander -O -i min2.in -p protein.prmtop -c protein_min1.rst -o protein_min2.out -r protein_min2.rst |