24小时热门版块排行榜    

北京石油化工学院2026年研究生招生接收调剂公告
查看: 2234  |  回复: 6
【奖励】 本帖被评价1次,作者yalefield增加金币 1
当前主题已经存档。
当前只显示满足指定条件的回帖,点击这里查看本话题的所有回帖

[资源] 【分享】MM/PBSA

看gwdavid着急得很,http://muchong.com/bbs/viewthread.php?tid=1097215
老汉只好亲自......转贴

动力学分析方法多种多样,但是能量永远是不变的话题,很多问题的说明都是以能量为基础的,这里说的能量包括各种力场能量,溶剂化能,自由能等。

在amber中,可以通过mmpbsa来计算这个相对自由能。
在免费的软件gromacs中,能量计算相当粗糙,虽然提供了计算自由能的工具,但是源码中却是空,不知道到哪个版本才能实现。
GROMACS 4.0应该有所动作了吧

amber是比较好用,但是也是一个收费软件,特别是想发文章的朋友要注意了。如果是不想买amber的朋友,中间路线:

用gromacs跑轨迹
用autodock算能量(自由能)
虽然不如mmpbsa原理上准确,但是忽略部分熵效应也在变动不大的体系也还不错。

[ Last edited by mingdong on 2009-6-25 at 15:52 ]
回复此楼
已阅   回复此楼   关注TA 给TA发消息 送TA红花 TA的回帖

★★★★★ 五星级,优秀推荐

★★★★★ 五星级
7楼2009-12-06 18:30:09
已阅   回复此楼   关注TA 给TA发消息 送TA红花 TA的回帖
查看全部 7 个回答

GROMACS

★ ★ ★ ★
fegg7502(金币+4,VIP+0):thank you very much! 12-6 18:29
Tips for MM/PBSA calculations

This section provides some hints on how to use the tools you've already learned about in this class to perform MM/PBSA calculations on your systems.

Additionally, it is assumed (or hoped) that you are able to write scripts in some language since that will simplify many of the repetitive tasks listed here.

Generating PQR files

This section assumes that you've generated one (or more) PDB files from your GROMACS-format trajectory. However, you'll need to do a bit of post-processing to make the nomenclature used by GROMACS consistent with the PARSE force field (see below). This can be accomplished by applying the following sed commands to each PDB file produced by GROMACS:

$ cat in.pdb | sed -e "s/PRO A 1/PR+ A   1/g" | sed -e "s/PRO B 100/PR+ B 100/g" > out.pdb
                 
You've already learned how to transform PDB files into PQR in the pKa section of the class. However, those files contained only standard amino acids; the files we're interested in contain the non-standard amprenavir drug. Therefore, we'll be using a custom command-line version of PDB2PQR for this class.

If you set your path correctly earlier, you should be able to type pdb2pqr.py and get a basic help screen. More detailed documentation is available from the PDB2PQR home page(http://pdb2pqr.sf.net/).

As mentioned above, we have installed a specialized version of PDB2PQR with amprenavir parameters. However, these parameters are only available with the PARSE force field[1]. Therefore, you will need to invoke PDB2PQR with the PARSE force field. We will also not be using any of the hydrogen rebuilding methods. Therefore, in general, you will invoke PDB2PQR as

$ pdb2pqr.py --assign-only --ff=parse input.pdb output.pqr
            
where input.pdb is the input PDB file and output.pqr is the output PQR.

It's probably worthwhile to use the --apbs-input option with one of your PDB files to generate input for the APBS solvation energy calculations.

Notes

More details on this force field are available in the original paper:

Sitkoff D, Sharp KA, Honig B.
Accurate calculation of hydration free energies using macroscopic solvent models.
Journal of Physical Chemistry. 98 (7), 1978-88, 1994.
http://pubs.acs.org/cgi-bin/samp ... pdf/j100058a043.pdf

[ Last edited by yalefield on 2008-12-12 at 18:38 ]
2楼2008-12-12 18:37:06
已阅   回复此楼   关注TA 给TA发消息 送TA红花 TA的回帖

AutoDock

★ ★ ★ ★
fegg7502(金币+4,VIP+0):thank you very much! 12-6 18:30
下面这个脚本可以实现这一功能:

#!/bin/sh
#'$1' is set for different list name
#'$2' is set for the ligand name #prepare the $2.bnd in advance with command:

#/

~root/autodock/dist305/bin/pdbtoatm lig.pdbq|

~root/autodock/dist305/bin/atmtobnd >lig.bnd for snapshot in `cat $1`
do rec=protein_mn_hoh1.${snapshot} lig=$2.${snapshot} echo ${rec}

#assign the atomic solvation parameters to PDBQ-formatted version of your macromolecule,
~root/bin/addsol ${rec}.pdbq ${rec}.pdbqs
~root//bin/autotors -A $2.bnd ${lig}.pdbq ${lig}.out.pdbq > ${lig}.out.${rec}.epdb.com
~root/autodock/dist305/bin/autodock3 -p ${lig}.out.${rec}.dpf -l ${lig}.out.${rec}.epdb.log -c > $1_Binding
~root//bin/Docked.awk ${lig}.out.${rec}.epdb.log >> $1_Docked
~root//bin/Inter_score.awk ${lig}.out.${rec}.epdb.log >> $1_Inter_Energy
~root//bin/Intra_score.awk ${lig}.out.${rec}.epdb.log >> $1_Intra_Energy #rm -f *.map *.fld *.xyz *.err *.pdbqs *.glg *.log *.com *.gpf *.dpf
Binding.awk

#!
~root/bin/gawk -f BEGIN{ name=ARGV[1] split(name,array,"." }
{
   if($0 ~ /Estimated Free Energy of Binding/)
   {
    print array[1]" "$9" " $10
   }
}

Docked.awk

#!~root/bin/gawk -f BEGIN{ name=ARGV[1] split(name,array,"." }
{
     if($0 ~ /Final Docked Energy/) {print array[1]" "$7" " $8}
}
3楼2008-12-12 18:43:44
已阅   回复此楼   关注TA 给TA发消息 送TA红花 TA的回帖

sijifengsd

银虫 (小有名气)


请教


小木虫(金币+0.5):给个红包,谢谢回帖交流
我也想学习一下,可就是不知道怎么把这两个软件结合起来
6楼2009-06-24 20:16:37
已阅   回复此楼   关注TA 给TA发消息 送TA红花 TA的回帖
☆ 无星级 ★ 一星级 ★★★ 三星级 ★★★★★ 五星级
普通表情 高级回复 (可上传附件)
最具人气热帖推荐 [查看全部] 作者 回/看 最后发表
[考研] 081200-11408-276学硕求调剂 +5 崔wj 2026-04-02 5/250 2026-04-02 22:54 by pphmily
[考研] 一志愿北京工业大学,324分求调剂 +7 零八# 2026-03-28 7/350 2026-04-02 21:09 by 1104338198
[考研] 一志愿北京科技大学材料学硕328分求调剂 +6 1段时间 2026-03-31 7/350 2026-04-02 13:57 by 3041
[考研] 材料专业求调剂 +10 月月鸟木 2026-04-01 10/500 2026-04-02 12:57 by wxiongid
[考研] 08开头看过来!!! +4 wwwwffffff 2026-03-31 6/300 2026-04-02 11:42 by 均值回归
[考研] 0710生物学求调剂 +9 manman511 2026-04-01 9/450 2026-04-02 10:00 by zxl830724
[考研] 301求调剂 +13 A_JiXing 2026-04-01 13/650 2026-04-02 09:01 by sanrepian
[考研] 一志愿北交大材料工程,总分358 +4 cs0106 2026-04-01 4/200 2026-04-02 07:42 by 尚水阁主
[考研] 349求调剂 +6 吃的不少 2026-04-01 6/300 2026-04-01 17:55 by JYD2011
[考研] 350求调剂 +7 阿佳~ 2026-03-31 7/350 2026-04-01 16:12 by yanflower7133
[考研] 288资源与环境专硕求调剂,不限专业,有学上就行 +25 lllllos 2026-03-30 26/1300 2026-04-01 09:52 by 一只好果子?
[考研] 土木304求调剂 +5 顶级擦擦 2026-03-31 5/250 2026-04-01 08:15 by fdcxdystjk¥
[考研] 070300化学专业279调剂 +10 哈哈哈^_^ 2026-03-31 10/500 2026-03-31 23:13 by liu823948201
[考研] 277跪求调剂 +8 1915668 2026-03-27 13/650 2026-03-31 14:58 by 王亮_大连医科大
[考研] 一志愿大连理工大学,机械工程学硕,341 +3 西瓜田的守望者 2026-03-30 3/150 2026-03-31 11:08 by asdfzly
[考研] 抱歉 +3 田洪有 2026-03-30 3/150 2026-03-30 19:11 by 迷糊CCPs
[考研] 328求调剂 +8 嗯滴的基本都 2026-03-27 8/400 2026-03-30 17:20 by Wang200018
[考研] 296求调剂 +10 彼岸t 2026-03-29 10/500 2026-03-30 10:50 by 探123
[考研] 086000生物与医药调剂 +5 Feisty。 2026-03-28 9/450 2026-03-29 12:02 by longlotian
[考研] 材料与化工(0856)304求B区调剂 +8 邱gl 2026-03-27 8/400 2026-03-28 12:42 by 唐沐儿
信息提示
请填处理意见