gmx pdb2gmx -f 1ETH.pdb -o 1ETH_processed.gro -water spc是什么意思
时间: 2024-06-03 12:08:29 浏览: 207
这是使用GROMACS工具中的pdb2gmx命令将1ETH.pdb文件转换为GROMACS格式的过程。其中:
-f 1ETH.pdb:指定输入的pdb文件名为1ETH.pdb。
-o 1ETH_processed.gro:指定输出的GROMACS格式文件名为1ETH_processed.gro。
-water spc:指定水模型为SPC(Simple Point Charge)。
因此,这条命令的含义是将输入的pdb文件1ETH.pdb转换为GROMACS格式的1ETH_processed.gro文件,并使用SPC水模型。
相关问题
gmx xpm2ps -f dssp.xpm -o secondary-structure.eps -title none -di 1.m2p -rainbow red可以将xom文件转化成eps,请修改以下代码,使其只显示只显示alpha-helix与beta-sheet,使alpha-helix用蓝色表示,beta-sheet用黄色表示。; Command line options of xpm2ps override the parameters in this file black&white = no ; Obsolete titlefont = Times-Roman ; A PostScript Font titlefontsize = 20 ; Font size (pt) legend = yes ; Show the legend legendfont = Times-Roman ; A PostScript Font legendlabel = ; Used when there is none in the .xpm legend2label = ; Used when merging two xpm’s legendfontsize = 14 ; Font size (pt) xbox = 2.0 ; x-size of a matrix element ybox = 2.0 ; y-size of a matrix element matrixspacing = 20.0 ; Space between 2 matrices xoffset = 0.0 ; Between matrix and bounding box yoffset = 0.0 ; Between matrix and bounding box x-major = 20 ; Major ticks on x axis every … frames x-minor = 5 ; Id. Minor ticks x-firstmajor = 0 ; First frame for major tick x-majorat0 = no ; Major tick at first frame x-majorticklen = 8.0 ; x-majorticklength x-minorticklen = 4.0 ; x-minorticklength x-label = ; Used when there is none in the .xpm x-fontsize = 16 ; Font size (pt) x-font = Times-Roman ; A PostScript Font x-tickfontsize = 10 ; Font size (pt) x-tickfont = Helvetica ; A PostScript Font y-major = 20 y-minor = 5 y-firstmajor = 0 y-majorat0 = no y-majorticklen = 8.0 y-minorticklen = 4.0 y-label = y-fontsize = 16 y-font = Times-Roman y-tickfontsize = 10 y-tickfont = Helvetica
可以使用以下代码来实现只显示alpha-helix与beta-sheet,alpha-helix用蓝色表示,beta-sheet用黄色表示:
gmx xpm2ps -f dssp.xpm -o secondary-structure.eps -rainbow blue yellow -1 2 -title none -di 1.m2p
其中,-rainbow参数用来设置颜色映射,blue表示alpha-helix的颜色,yellow表示beta-sheet的颜色;-1和2表示只显示XPM文件中数值为-1和2的部分,分别对应alpha-helix和beta-sheet;-title参数设置标题为none,-di参数设置输出dpi为1.m2p。其他参数保持不变。
为什么我在Ubuntu中使用不了pdb2gmx
有可能是因为您没有安装GROMACS软件或者安装的版本不兼容。您需要确认已经正确安装了GROMACS,并且版本与pdb2gmx兼容。如果您已经安装了GROMACS,但是仍然无法使用pdb2gmx,请尝试使用以下命令更新软件包:
sudo apt-get update
sudo apt-get upgrade
如果问题仍然存在,请尝试重新安装GROMACS。
阅读全文