autodataming的个人博客分享 http://blog.sciencenet.cn/u/autodataming

博文

Modeller---对蛋白指定的loop区域进行优化

已有 5263 次阅读 2013-9-23 20:13 |系统分类:科研笔记

背景:同源模建得到的loop区域不合理的时候,可以进行优化。

method:loop_refine.py

input:TvLDH.B99990001.pdb

需要refine的氨基酸:273-283

评价标准:DOPE


---------------------------------------------------------------------

loop_refine.py

--------------------------------------------------------------------

# Loop refinement of an existing model
from modeller import *
from modeller.automodel import *

log.verbose()
env = environ()

# directories for input atom files
env.io.atom_files_directory = './:../atom_files'

# Create a new class based on 'loopmodel' so that we can redefine
# select_loop_atoms (necessary)
class MyLoop(loopmodel):
   # This routine picks the residues to be refined by loop modeling
   def select_loop_atoms(self):
       # 10 residue insertion
       return selection(self.residue_range('273', '283'))

m = MyLoop(env,
          inimodel='TvLDH.B99990001.pdb', # initial model of the target
          sequence='TvLDHs')          # the name of output files prefix

m.loop.starting_model= 1           # index of the first loop model
m.loop.ending_model  = 10          # index of the last loop model
m.loop.md_level = refine.very_fast # loop refinement method; this yields
                                  # models quickly but of low quality;
                                  # use refine.slow for better models

m.make()



https://wap.sciencenet.cn/blog-950202-727282.html

上一篇:Modeller进阶教程---基于多模板的同源模建
下一篇:Pymol 选择指定范围内的氨基酸
收藏 IP: 202.127.19.*| 热度|

0

该博文允许注册用户评论 请点击登录 评论 (0 个评论)

数据加载中...

Archiver|手机版|科学网 ( 京ICP备07017567号-12 )

GMT+8, 2024-4-25 20:50

Powered by ScienceNet.cn

Copyright © 2007- 中国科学报社

返回顶部