[gmx-users] how to strip velocities out of a .gro file
shayamra at post.tau.ac.il
shayamra at post.tau.ac.il
Sun Jul 4 00:45:04 CEST 2010
How about:
1. editconf -f file1.gro -o file1.pdb
2. editconf -f file1.pdb -o file1_no_vel.gro
:-)
PDB contains just coordinates of atoms, so when you convert pdb to gro
again, you won't have the velocities.
Regards,
-Shay
Quoting chris.neale at utoronto.ca:
> If you have a directory full of .gro files that contain velocities,
> and if you don't need those velocities, then you're taking up too
> much space on your drive.
>
> It's too bad, but trjconv -novel -f in.gro -o out.gro will still
> write the velocities to out.gro.
>
> Here's a small script to strip the velocities out of a directory of
> .gro files. If anybody has a better idea of how to do this, then
> please post ;)
>
> #!/bin/bash
> for i in $(ls *.gro); do
> echo 0|trjconv -f $i -o a.xtc -novel -s $i;
> echo 0|trjconv -f a.xtc -novel -s $i -o a.gro;
> mv a.gro $i;
> rm a.xtc;
> done
>
> --
> gmx-users mailing list gmx-users at gromacs.org
> http://lists.gromacs.org/mailman/listinfo/gmx-users
> Please search the archive at http://www.gromacs.org/search before posting!
> Please don't post (un)subscribe requests to the list. Use thewww
> interface or send it to gmx-users-request at gromacs.org.
> Can't post? Read http://www.gromacs.org/mailing_lists/users.php
>
More information about the gromacs.org_gmx-users
mailing list