Hello,
I am running a simple simulation for benzene in GROMACS with 739 benzene molecules using the GROMOS forcefield. What I want to do is run some analysis on my trajectory.
This is how I have set things up:
import MDAnalysis
import numpy as np
u = MDAnalysis.Universe("739-c6h6-in-box.gro","739-c6h6-MolDynamics_good-pbc.xtc")
The above piece of code ran with no errors.
.xtc is the binary gromacs trajectory file.
.gro file contains all the coordinates of the 739 molecules, with the residue number, resid.
As far as I know, my 739-c6h6-in-box.gro file, does not have information about connectivity. I created that file using the insert-molecules command in GROMACS using the file c6h6-in-box.gro. c6h6-in-box.gro was created using editconf on c6h6.pdb.
My question is, since 739-c6h6-in-box.gro has no explicit mention of connectivity, will my analysis work fine? If not, how do I go about entering the topology of my file?
Thank you in advance for any advice you have for me!