Select: Difference between revisions
Jump to navigation
Jump to search
(usage/arguments) |
|||
(5 intermediate revisions by 4 users not shown) | |||
Line 1: | Line 1: | ||
== | '''select''' creates a named selection from an atom selection. Selections are one of the most powerful aspects of PyMOL and learning to use selections well is paramount to quickly achieving your goals in PyMOL. | ||
== Usage == | |||
select name [, selection [, enable [, quiet [, merge [, state ]]]]] | |||
Convenience shortcut to create selection with name "sele": | |||
select (selection) | select (selection) | ||
=== | == Arguments == | ||
* '''name''' = str: a unique name for the selection {default if skipped: sele} | |||
* '''selection''' = str: a selection-expression | |||
* '''enable''' = 0/1: show selection indicators {default: 1} | |||
* '''quiet''' = 0/1 {default: 0 for command, 1 for API} | |||
* '''merge''' = 0/1: update existing named selection {default: 0} | |||
* '''state''' = int: object state, affects spacial operators like '''within''' {default: 0 (all states)} | |||
== Examples == | |||
select near , (ll expand 8) | |||
select near , (ll expand 8) | |||
select bb, (name CA+N+C+O) | |||
<source lang="python"> | <source lang="python"> | ||
cmd.select( | cmd.select("%s_%s"%(prefix,stretch), "none") | ||
</source> | </source> | ||
=== | == Notes == | ||
Type '''help selections''' for more information about selections. | Type '''help selections''' for more information about selections. | ||
[[Category:Commands| | == See Also == | ||
*[[Selection Algebra]] | |||
*[[Property Selectors]] | |||
[[Category:Commands|Select]] | |||
[[Category:Selecting|Select]] |
Latest revision as of 14:06, 23 July 2018
select creates a named selection from an atom selection. Selections are one of the most powerful aspects of PyMOL and learning to use selections well is paramount to quickly achieving your goals in PyMOL.
Usage
select name [, selection [, enable [, quiet [, merge [, state ]]]]]
Convenience shortcut to create selection with name "sele":
select (selection)
Arguments
- name = str: a unique name for the selection {default if skipped: sele}
- selection = str: a selection-expression
- enable = 0/1: show selection indicators {default: 1}
- quiet = 0/1 {default: 0 for command, 1 for API}
- merge = 0/1: update existing named selection {default: 0}
- state = int: object state, affects spacial operators like within {default: 0 (all states)}
Examples
select near , (ll expand 8) select near , (ll expand 8) select bb, (name CA+N+C+O)
cmd.select("%s_%s"%(prefix,stretch), "none")
Notes
Type help selections for more information about selections.