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 env.io.atom_files_directory = ['.'] #directories of input atom files a = automodel(env, alnfile = 'bak_deepcomb5.pir', # alignment filename knowns = ( 'meta_com1', 'meta_hhsu3'), # codes of the templates sequence = 'deepcomb5') # code of the target a.starting_model= 1 # index of the first model a.ending_model = 5 # index of the last model a.make()