BuildInstructionState¶
Bindings for protocols::forge::build::BuildInstructionState namespace
-
class
pyrosetta.rosetta.protocols.forge.build.BuildInstructionState.Enum¶ Bases:
pybind11_builtins.pybind11_objectdescribes the state of the BuildInstruction
- There are currently three possible BuildInstruction states.
- READY indicates the BuildInstruction has been reset and is ready to modify a Pose. WAITING_ON_DEPENDENCIES indicates the BuildInstruction is waiting for its dependencies to be satisfied before allowing modifications to proceed. MODIFY_WAS_SUCCESSFUL indicates the BuildInstruction has finished modifications to the Pose, and its residue indexing is now consistent with the newly modified Pose.
-
__delattr__¶ Implement delattr(self, name).
-
__dir__() → list¶ default dir() implementation
-
__eq__(*args, **kwargs)¶ Overloaded function.
- __eq__(self: pyrosetta.rosetta.protocols.forge.build.BuildInstructionState.Enum, arg0: pyrosetta.rosetta.protocols.forge.build.BuildInstructionState.Enum) -> bool
- __eq__(self: pyrosetta.rosetta.protocols.forge.build.BuildInstructionState.Enum, arg0: int) -> bool
-
__format__()¶ default object formatter
-
__ge__¶ Return self>=value.
-
__getattribute__¶ Return getattr(self, name).
-
__getstate__(self: pyrosetta.rosetta.protocols.forge.build.BuildInstructionState.Enum) → tuple¶
-
__gt__¶ Return self>value.
-
__hash__(self: pyrosetta.rosetta.protocols.forge.build.BuildInstructionState.Enum) → int¶
-
__init__(self: pyrosetta.rosetta.protocols.forge.build.BuildInstructionState.Enum, arg0: int) → None¶
-
__init_subclass__()¶ This method is called when a class is subclassed.
The default implementation does nothing. It may be overridden to extend subclasses.
-
__int__(self: pyrosetta.rosetta.protocols.forge.build.BuildInstructionState.Enum) → int¶
-
__le__¶ Return self<=value.
-
__lt__¶ Return self<value.
-
__ne__(*args, **kwargs)¶ Overloaded function.
- __ne__(self: pyrosetta.rosetta.protocols.forge.build.BuildInstructionState.Enum, arg0: pyrosetta.rosetta.protocols.forge.build.BuildInstructionState.Enum) -> bool
- __ne__(self: pyrosetta.rosetta.protocols.forge.build.BuildInstructionState.Enum, arg0: int) -> bool
-
__new__()¶ Create and return a new object. See help(type) for accurate signature.
-
__reduce__()¶ helper for pickle
-
__reduce_ex__()¶ helper for pickle
-
__repr__(self: pyrosetta.rosetta.protocols.forge.build.BuildInstructionState.Enum) → str¶
-
__setattr__¶ Implement setattr(self, name, value).
-
__setstate__(self: pyrosetta.rosetta.protocols.forge.build.BuildInstructionState.Enum, arg0: tuple) → None¶
-
__sizeof__() → int¶ size of object in memory, in bytes
-
__str__¶ Return str(self).
-
__subclasshook__()¶ Abstract classes can override this to customize issubclass().
This is invoked early on by abc.ABCMeta.__subclasscheck__(). It should return True, False or NotImplemented. If it returns NotImplemented, the normal algorithm is used. Otherwise, it overrides the normal algorithm (and the outcome is cached).