[modeller_usage] loop optimization in the presence of a ligand
To:
Subject: [modeller_usage] loop optimization in the presence of a ligand
From: "Thijs Beuming" <>
Date: Thu, 16 Aug 2007 16:21:11 -0400
Hi,
I am trying to optimize a loop in close proximity to a ligand. For
some reason, the intial models have the ligand present, while the
loop optimized models do not. Hence, there are major clashes between
some of the calculated loops and the ligand. Is it possible to
optimize loops in the presence of the ligand?
My input script:
# Homology modeling by the automodel class
from modeller import * # Load standard Modeller classes
from modeller.automodel import * # Load the automodel class
log.verbose() # request verbose output
env = environ() # create a new MODELLER environment to build this
model in
def select_loop_atoms(self):
return selection(self.residue_range('378:', '383:'))
a = mymodel(env,
alnfile = 'MODELLER/alignment.pir', # alignment
filename
knowns = 'template', # codes of the
templates
sequence = 'target') # code of the target
a.starting_model= 1 # index of the first model
a.ending_model = 1 # index of the last model
a.loop.starting_model = 1 # First loop model
a.loop.ending_model = 2 # Last loop model
a.make() # do the actual homology modeling
Thanks,
Thijs Beuming