Advertisement
Guest User

Untitled

a guest
Apr 2nd, 2020
279
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.38 KB | None | 0 0
  1. #!/bin/bash
  2.  
  3. for((i = 1; i <= 10; i++))
  4. do
  5.     gmx grompp -f transitionA.mdp -c frameA$i.gro -p newtop.top -maxwarn 1 -o transitionA$i.tpr
  6.     gmx grompp -f transitionB.mdp -c frameB$i.gro -p newtop.top -maxwarn 1 -o transitionB$i.tpr
  7.     gmx mdrun -v -s transitionA$i.tpr -dhdl dhdlA$i.xvg -ntomp 4 -ntmpi 1
  8.     gmx mdrun -v -s transitionB$i.tpr -dhdl dhdlB$i.xvg -ntomp 4 -ntmpi 1
  9. done
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement