Difference between revisions of "Select"

From PyMOLWiki
Jump to navigation Jump to search
m
Line 1: Line 1:
 
===DESCRIPTION===  
 
===DESCRIPTION===  
"select" creates a named selection from an atom selection.
+
'''select''' creates a named selection from an atom selection.
+
 
 
===USAGE===
 
===USAGE===
 
  select (selection)
 
  select (selection)
Line 8: Line 8:
  
 
===PYMOL API===
 
===PYMOL API===
<source lang="python">
+
<source lang="python">
cmd.select(string name, string selection)
+
cmd.select(string name, string selection)
</source>  
+
</source>
  
 
===EXAMPLES===
 
===EXAMPLES===
Line 18: Line 18:
  
 
===NOTES===
 
===NOTES===
'help selections' for more information about selections.  
+
Type '''help selections''' for more information about selections.  
  
 
[[Category:Commands|select]]
 
[[Category:Commands|select]]

Revision as of 14:34, 29 January 2006

DESCRIPTION

select creates a named selection from an atom selection.

USAGE

select (selection)
select name, (selection)
select name = (selection)            # (DEPRECATED)

PYMOL API

cmd.select(string name, string selection)

EXAMPLES

select near , (ll expand 8)
select near , (ll expand 8)
select bb, (name ca,n,c,o )

NOTES

Type help selections for more information about selections.