Tried "gmx covar" but didn't got the expected results. Please help.
Store the trajectory coordinates as a numpy array, calculate cross-correlation matrix . . .
https://pubmed.ncbi.nlm.nih.gov/1749773/
. . . and visualize it as a heatmap with matplotlib.
Hello Ajit,
Concerning your question:
"Essential Dynamics Analysis is based on the computation of the elements of the positional fluctuations covariance matrix of protein atoms"
The use command gromacs is:
gmx covar –f traj.xtc –s reference.tpr –b start –e end –ascii
You see more details in the following link
https://materials.prace-ri.eu/466/9/MDTrajectoriesHPMDC15.pdf
I find a material that may be of interest in making your question
http://www3.mpibpc.mpg.de/groups/de_groot/compbio/p4/index.html
And other resources complementary to your questions.
http://www.bpc.uni-frankfurt.de/guentert/wiki/images/9/96/180627_AntwortenFragenTutorialMD.pdf
I hope my resource will help you clarify your doubt.
Greetings.
Use python and create a pandas data frame with your trajectory coordinates.
df = pd.DataFrame(data,columns=['A','B','C']) corrMatrix = df.corr() print (corrMatrix)
and try sci-kit learn for PCA
Hi,
First, you should calculate the covariance matrix of your trajectory with "gmx covar"
Then, you can use our Jupyter notebook to convert Gromacs formatted covariance matrix to cross-correlation matrix and heatmap:
https://github.com/aysebercin/gmx_corr
Cheers
You can calculate PCA with prody, which has a user interface in VMD. You can calculate cross-correlation matrix with correlationplus (https://github.com/tekpinar/correlationplus).
thank you Martin Klvana Nicolas Torres Anuraj Nayarisseri A. Berçin Barlas Mustafa Tekpinar
How to calculate the RMSD values for a MD simulation using MOE?
07 August 2021 0 0 View
When I tried to energy minimization my system, I got fatal error as below. Fatal error: Atomtype opls_116 not found Although I've already added this line: ; include water #include "oplsaa.ff/spc.itp" to [molecultype] directive in my topology.
16 June 2021 0 0 View
Hi, I want to start testing pitfall trap to obtain ants samples, but I need to conduct molecular analysis on those insects. So, what kind of fluid can I use? Ethanol expires too early and I need...
03 March 2021 5,978 5 View
Hello, I'm fairly new to ARENA and I have the following problem: I have two queues in which, in each queue, a different order type arrives (both having an arrival rate of exponential 10). Order...
02 March 2021 2,431 3 View
Hello, I have a mechanism where air rises due to convective flows. In this simulation, nothing is driving the air except this. I understand that the Boussinesq approximation only works for small...
02 March 2021 4,910 3 View
Hi, I am trying to construct a multi-layer fibril structure from a single layer in PyMol by translating the layer along the fibril axis. For now, I am able to use the Translate command in PyMol...
02 March 2021 4,569 4 View