GROMACS version: 2023.2
GROMACS modification: No
Dear GMX users,
I need to remove the PBC effect of my MD trajectory to perform MM/PB(GB)SA calculations. My system is made of a tetrameric protein (dimer of dimers) with one of the monomers bound to a ligand (for the binding energy calculation). Here you can see the complex:
The issue is that I have tried several approaches suggested in this forum, but none of them has worked. For instance, here is how the unprocessed trajectory looks like (I open the .gro file in PyMOL and then drop the .xtc file into it):
When I try to correct the PBC effect with
gmx_mpi trjconv -s md_0_1.tpr -f md_0_1.xtc -o md_0_1_noPBC.xtc -pbc mol -center -ur compact
1 (protein) 0 (system)
I get:
With
gmx_mpi trjconv -s md_0_1.tpr -f md_0_1.xtc -o md_0_1_noPBC2.xtc -pbc mol -center
1 (protein) 0 (system)
I get:
I created an index file with a group containing only the atoms of one of the chains, and then I centered using this group:
gmx_mpi trjconv -s md_0_1.tpr -f md_0_1.xtc -o md_0_1_noPBC.xtc -n index_pbc.ndx -pbc mol -center -ur compact
1 (Chain_A) 0 (system)
This improved the situation, but the complex was not correctly centralized in the box:
I tried mdvwhole using the command
mdvwhole -f md_0_1.gro -x md_0_1.xtc -o whole.xtc
but it didn’t help:
And with
mdvwhole -fmd_0_1.tpr -x md_0_1.xtc -mol True -o whole_sm.xtc
the issue persisted:
I would appreciate it if anyone could suggest a possible solution for this issue.
Best regards,
Gustavo
Edit:
I also tried to re-center (not sure which of the options below is appropriate) the trajectory previously “centered” using a single chain:
gmx_mpi trjconv -s md_0_1.tpr -f md_0_1_noPBC3.xtc -o md_0_1_noPBC7.xtc -center
gmx_mpi trjconv -s md_0_1.tpr -f md_0_1_noPBC3.xtc -o md_0_1_noPBC8.xtc -pbc mol -center
…but no success.
I also tried the “-pbc cluster” in two different ways:
gmx_mpi trjconv -s md_0_1.tpr -f md_0_1.xtc -o md_0_1_noPBC9.xtc -pbc cluster -center -ur compact
Cluster: 1 (Protein)
Center: 1 (Protein)
Output: 0 (System)
gmx_mpi trjconv -s md_0_1.tpr -f md_0_1.xtc -o md_0_1_noPBC10.xtc -n index.ndx -pbc cluster -center -ur compact
Cluster: 21 (Protein+Ligand)
Center: 1 (Protein)
Output: 0 (System)
…however, this also failed.