# Import the Modeller module from modeller import * from modeller.automodel import * # create a subclass of automodel or loopmodel, MyModel. # user can further modify the MyModel class, to override certain routine. class MyLoop(loopmodel): def select_loop_atoms(self): return selection(self.residue_range('54:','64:'), self.residue_range('77:', '92:')) #def customised_function(self): pass #code overrides the special_restraints method #def special_restraints(self, aln): #code overrides the special_patches method. # e.g. to include the addtional disulfides. #def special_patches(self, aln):