Re: [modeller_usage] model refinement and assessment
To: "Stephen A. Smith" <>
Subject: Re: [modeller_usage] model refinement and assessment
From: Modeller Caretaker <>
Date: Thu, 28 Apr 2005 12:33:03 -0700
Cc:
Stephen A. Smith wrote:
In MODELLER 7v7 one was able to turn off model
refinement using:
SET MD_LEVEL = 'nothing'
I am curious if there is an analogous way to do this
in 8v0? I've looked through the manual and examples
and have not found a solution. Have I missed
something simple?
I'm also interested in using these analysis methods on
other protein models and templates. Is there a quick
way to read these models into MODELLER and let it
analyze them?
You can analyze an arbitrary PDB file with something like the following:
env = environ()
m = model(env, file='foo.pdb')
score = m.assess_dope()
Replace assess_dope with assess_ga341 to use GA341 instead. (But read
the note at http://salilab.org/modeller/manual/node153.html first; GA341
needs to know the sequence identity between model and template, which
arbitrary PDB files may not have.)
DOPE is an unnormalized score, so it's best used within automodel to
rank the generated models; scores for arbitrary PDBs are not generally
comparable (just as with the Modeller scoring function).