This is a read-only mirror of pymolwiki.org

Difference between revisions of "Identify"

From PyMOL Wiki
Jump to navigation Jump to search
 
m
(2 intermediate revisions by the same user not shown)
Line 1: Line 1:
 
===DESCRIPTION===
 
===DESCRIPTION===
+
'''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===
 
===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)
</source>
+
</source>
  
 
===NOTES===
 
===NOTES===
+
*mode 0: only return a list of identifiers (default)
  mode 0: only return a list of identifiers (default)
+
*mode 1: return a list of tuples of the object name and the identifier  
  mode 1: return a list of tuples of the object name and the identifier  
 
  
[[Category:Commands|identify]]
+
[[Category:Commands|Identify]]

Revision as of 14:05, 20 June 2009

DESCRIPTION

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