24小时热门版块排行榜    

查看: 3342  |  回复: 10

zhongshun

至尊木虫 (著名写手)

[求助] 求助关于solvate的一些疑惑

请问怎么判断溶解蛋白的水球是否足够大,我一直使用vmd的wat_sphere.tcl脚本将蛋白溶解于水溶液中,vmd 中看到的蛋白质肽链的末段好像有一部分在水球的外面。。。。。。。
有没有什么方法可以稍微增大水球的大小呀?求指点
回复此楼

» 收录本帖的淘帖专辑推荐

我学习计算的一些帖子

» 本帖已获得的红花(最新10朵)

» 猜你喜欢

» 本主题相关价值贴推荐,对您同样有帮助:

已阅   回复此楼   关注TA 给TA发消息 送TA红花 TA的回帖

jiaoyixiong

荣誉版主 (职业作家)

【答案】应助回帖

★ ★
感谢参与,应助指数 +1
zh1987hs: 金币+2, 谢谢 2012-07-01 17:46:25
你所说的水球是什么意思?

是溶液的形状是球状的吗?

那你把球状的半径增大一些不就可以了吗?
2楼2012-07-01 16:47:22
已阅   回复此楼   关注TA 给TA发消息 送TA红花 TA的回帖

zhongshun

至尊木虫 (著名写手)

溶液的形状是球状的,但是怎么在wat_sphere.tcl脚本中增加水球的半径呢,是改变哪个参数呀?希望版主能具体指导
3楼2012-07-01 21:57:25
已阅   回复此楼   关注TA 给TA发消息 送TA红花 TA的回帖

jiaoyixiong

荣誉版主 (职业作家)

【答案】应助回帖

★ ★
chaizhm: 金币+2, 谢谢~ 2012-07-02 09:15:50
引用回帖:
3楼: Originally posted by zhongshun at 2012-07-01 21:57:25
溶液的形状是球状的,但是怎么在wat_sphere.tcl脚本中增加水球的半径呢,是改变哪个参数呀?希望版主能具体指导

你需要把 wat_sphere.tcl 中的每个命令看明白,你就知道怎么修改了。

PS
我这里没有你所说的这个脚本,无法得知
4楼2012-07-01 23:45:27
已阅   回复此楼   关注TA 给TA发消息 送TA红花 TA的回帖

zhongshun

至尊木虫 (著名写手)

### Script to immerse ubiquitin in a sphere of water just large enough
### to cover it

set molname xia41h

mol new ${molname}.psf
mol addfile ${molname}.pdb

### Determine the center of mass of the molecule and store the coordinates
set cen [measure center [atomselect top all] weight mass]
set x1 [lindex $cen 0]
set y1 [lindex $cen 1]
set z1 [lindex $cen 2]
set max 0

### Determine the distance of the farthest atom from the center of mass
foreach atom [[atomselect top all] get index] {
  set pos [lindex [[atomselect top "index $atom"] get {x y z}] 0]
  set x2 [lindex $pos 0]
  set y2 [lindex $pos 1]
  set z2 [lindex $pos 2]
  set dist [expr pow(($x2-$x1)*($x2-$x1) + ($y2-$y1)*($y2-$y1) + ($z2-$z1)*($z2-$z1),0.5)]
  if {$dist > $max} {set max $dist}
  }

mol delete top

### Solvate the molecule in a water box with enough padding (20 A).
### One could alternatively align the molecule such that the vector
### from the center of mass to the farthest atom is aligned with an axis,
### and then use no padding
package require solvate
solvate ${molname}.psf ${molname}.pdb -t 20 -o del_water

resetpsf
package require psfgen
mol new del_water.psf
mol addfile del_water.pdb
readpsf del_water.psf
coordpdb del_water.pdb

### Determine which water molecules need to be deleted and use a for loop
### to delete them
set wat [atomselect top "same residue as {water and ((x-$x1)*(x-$x1) + (y-$y1)*(y-$y1) + (z-$z1)*(z-$z1))<($max*$max)}"]
set del [atomselect top "water and not same residue as {water and ((x-$x1)*(x-$x1) + (y-$y1)*(y-$y1) + (z-$z1)*(z-$z1))<($max*$max)}"]
set seg [$del get segid]
set res [$del get resid]
set name [$del get name]
for {set i 0} {$i < [llength $seg]} {incr i} {
  delatom [lindex $seg $i] [lindex $res $i] [lindex $name $i]
  }
writepsf ${molname}_ws.psf
writepdb ${molname}_ws.pdb

mol delete top

mol new ${molname}_ws.psf
mol addfile ${molname}_ws.pdb
puts "CENTER OF MASS OF SPHERE IS: [measure center [atomselect top all] weight mass]"
puts "RADIUS OF SPHERE IS: $max"
mol delete top

我对solvate ${molname}.psf ${molname}.pdb -t 20 -o del_water这一行命令不是很懂。。。。。还有版主一般使用什么工具来进行溶剂化呀,昨天试了下packmol,但只是得到了pdb文件,不知道psf文件怎么得到?
5楼2012-07-02 09:43:13
已阅   回复此楼   关注TA 给TA发消息 送TA红花 TA的回帖

jiaoyixiong

荣誉版主 (职业作家)

【答案】应助回帖

★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★
zhongshun: 金币+20, 有帮助 2012-07-02 17:24:03
zh1987hs: 金币+4, 谢谢 2012-07-02 18:34:30
个人认为,最好用的是VMD

要读懂这个脚本是什么意思:
一、在论坛里找到tcl脚本的教程,仔细看看
二、对照VMD手册,把这个脚本中每个命令搞懂


“我对solvate ${molname}.psf ${molname}.pdb -t 20 -o del_water这一行命令不是很懂”,你在VMD TkConsole 中输入“solvate” ,然后回车就会出现这个插件的详细解释。

别嫌麻烦,做MD模拟,我个人觉得VMD的功能非常强大,非常好用,学习一下tcl脚本语言和VMD手册,对你建模,后处理,轨迹分析都会非常有益。
6楼2012-07-02 10:35:15
已阅   回复此楼   关注TA 给TA发消息 送TA红花 TA的回帖

zhongshun

至尊木虫 (著名写手)

好吧,自己再看看吧
7楼2012-07-02 18:14:16
已阅   回复此楼   关注TA 给TA发消息 送TA红花 TA的回帖

zmz148002989

新虫 (初入文坛)

现在MD中,已经很少人用球形水模型了。 为什么不用立体的呢? 立体模型的调整很方便,VMD中的TCL脚本就可以简单实现。
8楼2012-07-18 20:52:46
已阅   回复此楼   关注TA 给TA发消息 送TA红花 TA的回帖

zhongshun

至尊木虫 (著名写手)

引用回帖:
8楼: Originally posted by zmz148002989 at 2012-07-18 20:52:46
现在MD中,已经很少人用球形水模型了。 为什么不用立体的呢? 立体模型的调整很方便,VMD中的TCL脚本就可以简单实现。

为什么很少人用水球模型呀?难道水球模型的效果不好吗?
9楼2012-07-18 23:18:32
已阅   回复此楼   关注TA 给TA发消息 送TA红花 TA的回帖
送红花一朵
本帖内容被屏蔽

10楼2023-03-23 15:02:48
已阅   回复此楼   关注TA 给TA发消息 送TA红花 TA的回帖
相关版块跳转 我要订阅楼主 zhongshun 的主题更新
最具人气热帖推荐 [查看全部] 作者 回/看 最后发表
[基金申请] 面上函评意见出来了,像什么等级? 20+4 Tsingking1 2026-08-27 17/850 2026-09-01 19:51 by 超级无敌华子
[基金申请] 为什么国自然不能直接公布 +5 bjdxyxy 2026-08-26 5/250 2026-09-01 17:54 by 小伟大博士
[文学芳草园] 梦想 +5 myrtle 2026-08-26 7/350 2026-09-01 15:18 by myrtle
[基金申请] 为什么资助数各大高校都创新高,自己申请怎么就这么难 +13 Kittylucky 2026-08-27 14/700 2026-09-01 11:06 by feng6531
[基金申请] 麻烦专家们看看评委们的意见(F口面上) +7 gdd2018 2026-08-28 12/600 2026-09-01 08:32 by 尼古拉斯小虫
[基金申请] 怎么看青基中了没有啊 +6 叶九微 2026-08-26 6/300 2026-08-31 23:54 by yudaoqian88
[基金申请] 国社科又开始会评了,不知道这次命运如何 +7 雨打竹帘 2026-08-30 11/550 2026-08-31 23:16 by hittle2008
[基金申请] 哪位高人中了,把查询到的截图贴出来让我看看,让我长长见识 +6 yuleib84 2026-08-26 7/350 2026-08-31 19:46 by 鱼翔浅底1
[基金申请] 面上意见出来了 +12 黄鸟于飞Chao 2026-08-29 23/1150 2026-08-31 18:57 by 黄鸟于飞Chao
[考博] 找导师 +6 yuanjiabao 2026-08-29 7/350 2026-08-30 14:40 by 生科新手
[基金申请] 我就是申请一个面上项目而已,这评审意见是按照杰青的条件评的吧? +6 gouxfjh 2026-08-28 11/550 2026-08-30 07:57 by gouxfjh
[基金申请] 2026年叶企孙基金 +4 bud_bud 2026-08-27 7/350 2026-08-29 07:23 by foolishmani
[基金申请] 基金系统什么内容也没有 30+4 winsaint 2026-08-27 9/450 2026-08-28 11:06 by maolC
[基金申请] 怎么查啊 +6 huang1991js 2026-08-26 6/300 2026-08-28 08:42 by winsaint
[基金申请] 为什么 国际(地区)合作与交流项目 没有放榜? 10+3 majunge000 2026-08-26 11/550 2026-08-27 08:42 by 北京莱茵编辑
[基金申请] 我不理解! +15 Edward_pc 2026-08-26 23/1150 2026-08-26 20:34 by zzuzxg
[基金申请] 国合里面能看到了 +7 一怀馨秋 2026-08-26 7/350 2026-08-26 11:23 by zhaosm1982
[基金申请] 国际合作可查了,中了面上 (EPI+1)(金币+50) +18 Ldrop2023 2026-08-26 18/900 2026-08-26 11:15 by cmrandy
[基金申请] 系统进不去 +4 yanglien 2026-08-26 5/250 2026-08-26 11:10 by wenfengw83
[基金申请] 牛来!米来!面来! +8 beefly 2026-08-26 8/400 2026-08-26 08:37 by xuzhipiao
信息提示
请填处理意见