Difference between revisions of "Get Model"

From PyMOLWiki
Jump to navigation Jump to search
m
Line 1: Line 1:
 
===DESCRIPTION===
 
===DESCRIPTION===
    "get_model" returns a model object.
+
'''get_model''' returns a model object.
+
 
 
===PYMOL API===
 
===PYMOL API===
<source lang="python">
+
<source lang="python">
  cmd.get_model(string "selection" )
+
cmd.get_model(string "selection" )
</source>
+
</source>
+
 
 
===USAGE===
 
===USAGE===
  cmd.get_model("chain A")
+
cmd.get_model("chain A")
  
 
===NOTES===
 
===NOTES===
Line 19: Line 19:
  
 
===SEE ALSO===
 
===SEE ALSO===
 
 
[[Category:Commands|get_model]]
 
[[Category:Commands|get_model]]

Revision as of 03:25, 10 January 2006

DESCRIPTION

get_model returns a model object.

PYMOL API

cmd.get_model(string "selection" )

USAGE

cmd.get_model("chain A")

NOTES

It can be useful to loop through all the atoms of a selection (rather than using the iterate command)

atoms = cmd.get_model("chain A")
for at in atoms.atom:
    print "ATOM DEFINITION: "+at.chain+" "+at.resn+" "+str(at.resi)+" "+at.name+" "+str(at.index)

SEE ALSO