|
Rosetta
|
Functions | |
| def | get_residues (self, pose) |
| def | __and__ (self, selector) |
| def | __or__ (self, selector) |
| def | __invert__ (self) |
| def | __xor__ (self, selector) |
| def | __iand__ (self, selector) |
| def | __ior__ (self, selector) |
| def | __ixor__ (self, selector) |
Variables | |
| string | __author__ = "Jason C. Klima" |
| def pyrosetta.bindings.residue_selectors.__and__ | ( | self, | |
| selector | |||
| ) |
Short notation for `AndResidueSelector` using the `&` operator in python.
| def pyrosetta.bindings.residue_selectors.__iand__ | ( | self, | |
| selector | |||
| ) |
Short notation for in-place `AndResidueSelector` using the `&=` operator in python.
| def pyrosetta.bindings.residue_selectors.__invert__ | ( | self | ) |
Short notation for `NotResidueSelector` using the `~` operator in python.
| def pyrosetta.bindings.residue_selectors.__ior__ | ( | self, | |
| selector | |||
| ) |
Short notation for in-place `OrResidueSelector` using the `|=` operator in python.
| def pyrosetta.bindings.residue_selectors.__ixor__ | ( | self, | |
| selector | |||
| ) |
Short notation for in-place exclusive `OrResidueSelector` using the `^=` operator in python.
| def pyrosetta.bindings.residue_selectors.__or__ | ( | self, | |
| selector | |||
| ) |
Short notation for `OrResidueSelector` using the `|` operator in python.
| def pyrosetta.bindings.residue_selectors.__xor__ | ( | self, | |
| selector | |||
| ) |
Short notation for exclusive `OrResidueSelector` using the `^` operator in python.
| def pyrosetta.bindings.residue_selectors.get_residues | ( | self, | |
| pose | |||
| ) |
Return a python `list` object of selected residues in pose numbering.
Args:
pose: a `Pose` object to which to apply this residue selector.
Returns:
A `list` object of selected residues in pose numbering.
References basic::options::OptionKeys::in::file.list.
Referenced by test.T121_core.TestResidueSelectors.test_residue_selectors().
|
private |