---------- Forwarded message ----------
From:
Krupal Jethava <krupal.jethava@gmail.com>
Date: Mon, Dec 10, 2012 at 6:01 PM
Subject: Re: [modeller_usage] modeling with multiple sequence alignment.
To: flavio seixas <
oivalf_nix@yahoo.com>
I have
1) alignment.ali
2) qseq.fasta
2) tseq1.pdb and tseq2.pdb
I tried this script by modeller- "C:\ program files (x86)\ modeller 9.11\ bin \ test> mod9.11 script.py"
# Homology modeling with multiple templates
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
# directories for input atom files
env.io.atom_files_directory = ['.', '../atom_files']
a = automodel(env,
alnfile = 'alignment.ali', # alignment filename
knowns = ('tseq2', 'tseq1'), # codes of the templates
sequence = 'qseq') # code of the target
a.starting_model= 1 # index of the first model
a.ending_model = 1 # index of the last model
# (determines how many models to calculate)
a.make() # do the actual homology modeling
Got these errors
traceback <.......>:
file "script.py", line 18,in ?
a.make()
File ; C:\........\automodel.py, line 424 in homcsr,
File ; C:\........\automodel.py, line 406, in check_alignment
aln.check()
and many.......
What to do?