Mercurial > repos > chemteam > gmx_fep
changeset 2:4f367d3db5a7 draft default tip
"planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/free_energy commit eefe89bfcd6c3e98f4e774e508ad0659dcc2f65c"
author | chemteam |
---|---|
date | Sun, 01 Dec 2019 14:46:53 +0000 |
parents | 5338b2d682a4 |
children | |
files | alchemical_run/gmx_fep.sh |
diffstat | 1 files changed, 4 insertions(+), 5 deletions(-) [+] |
line wrap: on
line diff
--- a/alchemical_run/gmx_fep.sh Mon Nov 18 14:51:14 2019 +0000 +++ b/alchemical_run/gmx_fep.sh Sun Dec 01 14:46:53 2019 +0000 @@ -47,7 +47,7 @@ gmx grompp -f $MDP/em_steep_$LAMBDA.mdp -c $FREE_ENERGY/morph.gro -p $FREE_ENERGY/morph.top -o min$LAMBDA.tpr - gmx mdrun -deffnm min$LAMBDA + gmx mdrun -nt "${GALAXY_SLOTS:-4}" -deffnm min$LAMBDA sleep 10 @@ -62,7 +62,7 @@ gmx grompp -f $MDP/nvt_$LAMBDA.mdp -c ../EM/min$LAMBDA.gro -p $FREE_ENERGY/morph.top -o nvt$LAMBDA.tpr - gmx mdrun -deffnm nvt$LAMBDA + gmx mdrun -nt "${GALAXY_SLOTS:-4}" -deffnm nvt$LAMBDA echo "Constant volume equilibration complete." @@ -78,7 +78,7 @@ gmx grompp -f $MDP/npt_$LAMBDA.mdp -c ../NVT/nvt$LAMBDA.gro -p $FREE_ENERGY/morph.top -t ../NVT/nvt$LAMBDA.cpt -o npt$LAMBDA.tpr - gmx mdrun -deffnm npt$LAMBDA + gmx mdrun -nt "${GALAXY_SLOTS:-4}" -deffnm npt$LAMBDA echo "Constant pressure equilibration complete." @@ -94,7 +94,7 @@ gmx grompp -f $MDP/md_$LAMBDA.mdp -c ../NPT/npt$LAMBDA.gro -p $FREE_ENERGY/morph.top -t ../NPT/npt$LAMBDA.cpt -o md$LAMBDA.tpr - gmx mdrun -deffnm md$LAMBDA + gmx mdrun -nt "${GALAXY_SLOTS:-4}" -deffnm md$LAMBDA echo "Production MD complete." @@ -112,4 +112,3 @@ exit; -