pose

pyrosetta.method_bindings.pose.__getitem__(self, key)

Quick index and slicing operation. There is full support for conventional python style slicing.

Examples: pose[3], pose[2:6], pose[:-3], pose[2:], pose[-1]

@atom-moyer

pyrosetta.method_bindings.pose.__iadd__(self, other)

Short notation for appending a residue to the end of a pose by bond. If the terminal residue has Cterm variant type, the new appended residue will be transferred the variant type. If the pose is empty, the residue will be appended by jump for ease of use.

@atom-moyer

pyrosetta.method_bindings.pose.__imul__(self, other)

Short notation for appending residues by jump to the terminal residue of a pose.

@atom-moyer

pyrosetta.method_bindings.pose.__iter__(self)

Define the dunder iter function for pose as stream of ordered residues.

@atom-moyer

pyrosetta.method_bindings.pose.__len__(self)

Define the dunder len function for pose as the amount of residues.

@atom-moyer