分子动力学结果简易分析教程
分析蛋白质和配体的骨架:
1 | gmx rms -f md.xtc -s md.tpr -o rmsd_protein.xvg -tu ns |
两次选择backbone
1 | qtgrace rmsd_protein.xvg |
接下来检查配体分子的骨架:
1 | gmx rms -f md.xtc -s md.tpr -o rmsd_lig.xvg -tu ns |
第一次选bcakbone,第二次选MOL,代表结构对蛋白骨架做叠合,只计算MOL的RMSD,考查配体分子的RMSD。
1 | qtgrace rmsd_lig.xvg |
考查氢键
创建并进入hbond目录,在cmd下运行
1 | gmx hbond -f ../md.xtc -s ../md.tpr -hbn -hbm -nomerge -tu ns |
选择protein和MOL组
1 | 1 |
考察rmsf
1 | gmx rmsf -s md.tpr -f md.xtc -o rmsf.xvg -res |
选择protein组
1 | 1 |
考察sasa
在git bash上运行
1 | gmx sasa -f md.xtc -s md.tpr -surface 'group protein' -output '"Hydrophobic" group protein and charge {-0.2 to 0.2}; "Hydrophilic" group protein and not charge {-0.2 to 0.2}' |
考察Rg
1 | gmx gyrate -s md.tpr -f md.xtc -o gyrate.xvg |
mmpbsa分析
轨迹矫正(选择系统)
1 | gmx trjconv -s md.tpr -f md.xtc -o md_noPBC.xtc -center -pbc mol -ur compact |
采样90-100ns轨迹,一般认为更加稳定
1 | gmx trjconv -f md_noPBC.xtc -o trj_90-100ns.xtc -b 90000 -e 100000 |
轨迹检查
1 | gmx check -f trj_90-100ns.xtc |
mmpbsa分析,基于李继存老师的分析脚本
1 | gmx_mmpbsa.bsh -f trj_90-100ns.xtc -s md.tpr -n index.ndx -pro Protein -lig MOL |
VMD分析
在VMD主界面下点击Graphics ——> Representations ——> selected Atoms下输入:
显示蛋白
protein
显示配体
resname MOL
显示氧原子/氮原子氢键周围3埃内原子
not water and same resid as within 3.0 of index xx xx xx
of index xx xx xx
All articles on this blog are licensed under CC BY-NC-SA 4.0 unless otherwise stated.
Comments