Identify: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
m (add links to Selection and Property_selectors) |
||
(3 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
'''identify''' returns a list of atom IDs corresponding to the ID code of atoms in the selection. | '''identify''' returns a list of atom IDs corresponding to the ID code of atoms in the selection. | ||
== PYMOL API == | |||
<source lang="python"> | <source lang="python"> | ||
list = cmd.identify(string selection="(all)",int mode=0) | list = cmd.identify(string selection="(all)",int mode=0) | ||
Line 8: | Line 7: | ||
===NOTES=== | ===NOTES=== | ||
*mode 0: only return a list of identifiers (default) | |||
*mode 1: return a list of tuples of the object name and the identifier | |||
[[Category:Commands| | == See Also == | ||
[[Selection]], [[Property_Selectors]] | |||
[[Category:Commands|Identify]] |
Latest revision as of 00:09, 9 October 2015
identify returns a list of atom IDs corresponding to the ID code of atoms in the selection.
PYMOL API
list = cmd.identify(string selection="(all)",int mode=0)
NOTES
- mode 0: only return a list of identifiers (default)
- mode 1: return a list of tuples of the object name and the identifier