This is a read-only mirror of pymolwiki.org
Get names of type
(Redirected from Get Names of Type)
Jump to navigation
Jump to search
get_names_of_type returns a list of object and/or selection names.
PYMOL API
cmd.get_names_of_type(string type)
NOTES
The object types are strings such as
- object:molecule
- object:map
- object:mesh
- object:slice
- object:surface
- object:measurement
- object:cgo
- object:group
- object:volume
EXAMPLES
Truncate names of all molecules
# Get names for all molecules.
for x in cmd.get_names_of_type("object:molecule"): cmd.set_name(x,x[:5])