Select

From PyMOLWiki
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

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.

See Also