native overlap of pdb structures
Dear Ben,
I'm working on a project similar to the work you and Andrej Sali did in 2003 (comparative protein structure modeling by iterative alignment, model building and model assessment), Except that I'm using Scatter Search Heuristics rather than Genetic Algorithms. after running my algorithm and comparing the 3D structures obtained with the ones found in PDB, the results are showing good RMSD values, however using the superpose method of Modeller:
from modeller import * env = environ() env.io.atom_files_directory = ['']
mdl = model(env, file='3HLA') mdl2 = model(env, file='3HLA.B99991001') aln = alignment(env, file='superpose_alignment.ali', align_codes=('3HLA', 'ABCD')) atmsel = selection(mdl).only_atom_types('CA') r = atmsel.superpose(mdl2, aln, rms_cutoff =5, reference_distance = 10, refine_local=False, superpose_refine=False) rms = r.rms drms = r.drms print("%d equivalent positions" % r.num_equiv_pos) mdl2.write(file='superpose_alignment.txt')
I'm not getting such good overlaps within 5 angstroms. my question is that is there a way to refine my final comparative Model so that I'll get better (higher) native overlap values? Thank you.
On 03/06/2015 10:55 PM, Mouses Stamboulian wrote: > I'm not getting such good overlaps within 5 angstroms. my question is > that is there a way to refine my final comparative Model so that I'll > get better (higher) native overlap values? Thank you.
I'm not sure what you're asking here is why Modeller is reporting a different RMSD to whatever other method you're using, or how do you improve the RMSD? In the first case, note that superpose performs a superposition without changing the alignment - that won't always give you the "best" RMSD. (SALIGN can also do a structural alignment.) In the second case, that's kind of a broad question.
Ben Webb, Modeller Caretaker
participants (2)
-
Modeller Caretaker
-
Mouses Stamboulian