Difference between revisions of "Workflow homology modelling glucocerebrosidase"

From Bioinformatikpedia
(Created page with "== MODELLER == === Preparation of the Alignment File === # Save target protein sequence in PIR-format: target.pir # Save PDB-file of template sequence: template:pdb #: If PDB-fi…")
 
(Preparation of the Alignment File)
Line 5: Line 5:
 
# Save PDB-file of template sequence: template:pdb
 
# Save PDB-file of template sequence: template:pdb
 
#: If PDB-file consists of several chains: split pdb file with the help of [http://structure.usc.edu/splitpdb/ splitpdb] (note that minor changes are needed, so that the ATOM coordinates are listed in the resulting PDB-file instead of HETATOMS).
 
#: If PDB-file consists of several chains: split pdb file with the help of [http://structure.usc.edu/splitpdb/ splitpdb] (note that minor changes are needed, so that the ATOM coordinates are listed in the resulting PDB-file instead of HETATOMS).
# Run Python Script with command '<code>mod9.9 align.py</code>' to align the two sequences:
+
# Run the following Python script with command '<code>mod9.9 align.py</code>' to create target template alignment in PIR-format:
#: <code>
+
<code>
 
log.verbose()<br/>
 
log.verbose()<br/>
 
env = environ()<br/>
 
env = environ()<br/>
Line 16: Line 16:
 
aln.write(file='target_template.ali', alignment_format='PIR')<br/>
 
aln.write(file='target_template.ali', alignment_format='PIR')<br/>
 
aln.write(file='target_template.pap', alignment_format='PAP')</code>
 
aln.write(file='target_template.pap', alignment_format='PAP')</code>
  +
  +
=== Modeling of the Structure ===
  +
# Run the following Python script with command '<code>mod9.9 model.py</code>' to model the structure of the target sequence:
  +
<code>
  +
  +
</code>

Revision as of 08:51, 10 June 2011

MODELLER

Preparation of the Alignment File

  1. Save target protein sequence in PIR-format: target.pir
  2. Save PDB-file of template sequence: template:pdb
    If PDB-file consists of several chains: split pdb file with the help of splitpdb (note that minor changes are needed, so that the ATOM coordinates are listed in the resulting PDB-file instead of HETATOMS).
  3. Run the following Python script with command 'mod9.9 align.py' to create target template alignment in PIR-format:

log.verbose()
env = environ()
aln = alignment(env)
mdl= model(env, file='template')
aln.append_model(mdl, align_codes='template')
aln.append(file='target.pir', align_codes=('target'))
aln.align(gap_penalties_1d=(-600,-400))
aln.write(file='target_template.ali', alignment_format='PIR')
aln.write(file='target_template.pap', alignment_format='PAP')

Modeling of the Structure

  1. Run the following Python script with command 'mod9.9 model.py' to model the structure of the target sequence: