Rosetta
Functions | Variables
pyrosetta.bindings.residue_selectors Namespace Reference

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"
 

Function Documentation

◆ __and__()

def pyrosetta.bindings.residue_selectors.__and__ (   self,
  selector 
)
Short notation for `AndResidueSelector` using the `&` operator in python.

◆ __iand__()

def pyrosetta.bindings.residue_selectors.__iand__ (   self,
  selector 
)
Short notation for in-place `AndResidueSelector` using the `&=` operator in python.

◆ __invert__()

def pyrosetta.bindings.residue_selectors.__invert__ (   self)
Short notation for `NotResidueSelector` using the `~` operator in python.

◆ __ior__()

def pyrosetta.bindings.residue_selectors.__ior__ (   self,
  selector 
)
Short notation for in-place `OrResidueSelector` using the `|=` operator in python.

◆ __ixor__()

def pyrosetta.bindings.residue_selectors.__ixor__ (   self,
  selector 
)
Short notation for in-place exclusive `OrResidueSelector` using the `^=` operator in python.

◆ __or__()

def pyrosetta.bindings.residue_selectors.__or__ (   self,
  selector 
)
Short notation for `OrResidueSelector` using the `|` operator in python.

◆ __xor__()

def pyrosetta.bindings.residue_selectors.__xor__ (   self,
  selector 
)
Short notation for exclusive `OrResidueSelector` using the `^` operator in python.

◆ get_residues()

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().

Variable Documentation

◆ __author__

string pyrosetta.bindings.residue_selectors.__author__ = "Jason C. Klima"
private