Difference between revisions of "Task 10 - Journal (PKU)"
From Bioinformatikpedia
(→Initial checks) |
(→create trajectories) |
||
Line 14: | Line 14: | ||
<source lang="bash"> |
<source lang="bash"> |
||
#fix jumps over the periodic boundary |
#fix jumps over the periodic boundary |
||
− | trjconv -f _md.xtc -s _solv.pdb -pbc nojump -o _traj_nojump.xtc |
+ | trjconv -f _md.xtc -s _solv.pdb -pbc nojump -o _traj_nojump.xtc<<EOF0\nEOF |
#center protein in the box |
#center protein in the box |
||
− | trjconv -f _traj_nojump.xtc -s _solv.pdb -center -o _traj_center.xtc |
+ | trjconv -f _traj_nojump.xtc -s _solv.pdb -center -o _traj_center.xtc<<EOF1\n0\nEOF |
#eliminate rotations |
#eliminate rotations |
||
− | trjconv -f _traj_center.xtc -s _solv.pdb -fit rot+trans -o _norot.xtc |
+ | trjconv -f _traj_center.xtc -s _solv.pdb -fit rot+trans -o _norot.xtc<<EOF1\n0\nEOF |
#create pdb file |
#create pdb file |
||
− | trjconv -f _norot.xtc -s _solv.pdb -o _traj.pdb |
+ | trjconv -f _norot.xtc -s _solv.pdb -o _traj.pdb<<EOF1\nEOF |
#reduce fluctuations and write every fifth frame |
#reduce fluctuations and write every fifth frame |
||
− | g_filter -f 1J8U_traj.pdb -s 1J8U_solv.pdb -ol _traj_filtered.pdb -fit -nf 5 |
+ | g_filter -f 1J8U_traj.pdb -s 1J8U_solv.pdb -ol _traj_filtered.pdb -fit -nf 5<<EOF1\nEOF |
</source> |
</source> |
Revision as of 12:07, 11 July 2012
Initial checks
Verify completion, frame number and frame rate: <source lang="bash"> gmxcheck -f _md.xtc </source>
performance statistics: <source lang="bash"> tail _md.log </source>
create trajectories
<source lang="bash">
- fix jumps over the periodic boundary
trjconv -f _md.xtc -s _solv.pdb -pbc nojump -o _traj_nojump.xtc<<EOF0\nEOF
- center protein in the box
trjconv -f _traj_nojump.xtc -s _solv.pdb -center -o _traj_center.xtc<<EOF1\n0\nEOF
- eliminate rotations
trjconv -f _traj_center.xtc -s _solv.pdb -fit rot+trans -o _norot.xtc<<EOF1\n0\nEOF
- create pdb file
trjconv -f _norot.xtc -s _solv.pdb -o _traj.pdb<<EOF1\nEOF
- reduce fluctuations and write every fifth frame
g_filter -f 1J8U_traj.pdb -s 1J8U_solv.pdb -ol _traj_filtered.pdb -fit -nf 5<<EOF1\nEOF
</source>