Newbie question : restraining secondary structure
Hi,
May be I am making a mistake in here but. When I try to use the script in example 12 in the FAQ about
* Is it possible to restrain secondary structure in the target sequence? modeller 8v1 gives following error message and quits
File "model-default.py", line 7 rsr = self.restraints: ^ IndentationError: expected an indented block
Any help is wellcome best regards, Parantu ---------------------------------------------------- * Here is the script file
from modeller.automodel import * # Load the automodel class
class mymodel(automodel): def special_restraints(self, aln): rsr = self.restraints rsr.make(aln, restraint_type='STRAND', residue_ids=('416', '418'))
env = environ() # create a new MODELLER environment to build this model in
# directories for input atom files env.io.atom_files_directory = './'
a = mymodel(env, alnfile = 'ewq_msh23.ali', # alignment filename knowns = '1EWQ', # codes of the templates sequence = '1msh') # code of the target a.starting_model= 1 # index of the first model a.ending_model = 20 # index of the last model # (determines how many models to calculate) a.make() # do the actual homology modelling
------------------------------------------------------------------------- Parantu Shah Ph: 0 6221 387 456 (0) Graduate Student : 0 1797 731 953 (m) Bork Group Fax: +49 6221 387 517 European Molecular Biology Laboratory Heidelberg, Germany
www.bork.embl-heidelberg.de/~shah
GCS/S d- s: a- c++++$ UL+++$ P++++$ E--- W++ N-- O++ !K W++ N-- o+ !K W !O M V PS+ PE++ Y+ PGP+ t+ !5 X+ R- tv++ b+++ DI+ !D G++ e+++(++++) h+ r y+ z?
Parantu Shah wrote: > May be I am making a mistake in here but. > When I try to use the script in example 12 in the FAQ about > > > * Is it possible to restrain secondary structure in the target sequence? > modeller 8v1 gives following error message and quits > > File "model-default.py", line 7 > rsr = self.restraints: > ^ > IndentationError: expected an indented block
You need to copy the example from the FAQ with the indentation intact. Python uses indentation to identify code blocks. See http://diveintopython.org/getting_to_know_python/indenting_code.html
Ben Webb, Modeller Caretaker
participants (2)
-
Modeller Caretaker
-
Parantu Shah