[modeller_usage] Trouble running superpose on subsets of multichain pdbs
To:
Subject: [modeller_usage] Trouble running superpose on subsets of multichain pdbs
From: "Jake Gunn-Glanville" <>
Date: Tue, 8 Apr 2008 09:36:20 -0700
Dear Modelling Community,
I have two pdb structures I am interested in superposing, using an alignment I have created outside of modeller. The alignment is in pir format, and only represents a single chain from each PDB (each PDB has multiple chains in this case). Ideally, I would like to have the superposition be performed by only considering a subset of the aligned residues that I define (the most conserved positions).
I have already looked through the superpose.py example, converted my alignment into pir format, and familiarized myself with the modeller 'selection' object. Unfortunately, I am running into problems when I attempt to run the superposition. The pir alignment I am using is below:
When I attempt to just swap out these pdbs and this alignment with the ones in the example superpose.py, it returns an error, complaining that my submitted sequence length does not match the pdb sequence length.
-bash-3.00$ mod9v3 superpose.py Traceback (most recent call last): File "superpose.py", line 17, in ? r = atmsel2.superpose(mdl2, aln) File "/usr/lib/modeller9v3/modlib/modeller/selection.py", line 476, in superpose
fit, refine_local, rms_cutoff) _modeller.ModellerError: chk_aln_340E> Number of residues in model ( 427) does not match that in alignment ( 211).
What am I doing wrong? The superpose.py I used is shown below.
# Example for: selection.superpose()
# This will use a given alignment to superpose Calpha atoms of # one structure (2ctx) on the other (1fas).
atmsel = selection(mdl).only_atom_types('CA')
r = atmsel.superpose(mdl2, aln)
# We can now use the calculated RMS, DRMS, etc. from the returned 'r' object: rms = r.rms drms = r.drms print "%d equivalent positions" % r.num_equiv_pos