Difference between revisions of "Get Names"

From PyMOLWiki
Jump to navigation Jump to search
Line 18: Line 18:
  
 
===SEE ALSO===
 
===SEE ALSO===
[[get_type]], [[count_atoms]], [[count_states]]
+
[[get_type]], [[count_atoms]], [[count_states]],[[get_names_of_type]]
  
 
[[Category:Commands|Get Names]]
 
[[Category:Commands|Get Names]]

Revision as of 13:57, 1 March 2012

get_names returns a list of object and/or selection names.

PYMOL API

cmd.get_names( [string: "objects"|"selections"|"all"|"public_objects"|"public_selections"] )

NOTES

The default behavior is to return only object names.

EXAMPLES

Multiple alignments

# structure align all proteins in PyMOL to the protein named "PROT".  Effectively a 
# poor multiple method for multiple structure alignment.
for x in cmd.get_names("all"): cealign( "PROT", x)

SEE ALSO

get_type, count_atoms, count_states,get_names_of_type