mover

Bindings for protocols::stepwise::monte_carlo::mover namespace

class pyrosetta.rosetta.protocols.stepwise.monte_carlo.mover.AddMover

Bases: pyrosetta.rosetta.protocols.moves.Mover

__delattr__

Implement delattr(self, name).

__dir__() → list

default dir() implementation

__eq__

Return self==value.

__format__()

default object formatter

__ge__

Return self>=value.

__getattribute__

Return getattr(self, name).

__gt__

Return self>value.

__hash__

Return hash(self).

__init__(*args, **kwargs)

Overloaded function.

  1. __init__(self: pyrosetta.rosetta.protocols.stepwise.monte_carlo.mover.AddMover) -> None

doc

  1. __init__(self: pyrosetta.rosetta.protocols.stepwise.monte_carlo.mover.AddMover, scorefxn: pyrosetta.rosetta.core.scoring.ScoreFunction) -> None
  2. __init__(self: pyrosetta.rosetta.protocols.stepwise.monte_carlo.mover.AddMover, arg0: pyrosetta.rosetta.protocols.stepwise.monte_carlo.mover.AddMover) -> None
__init_subclass__()

This method is called when a class is subclassed.

The default implementation does nothing. It may be overridden to extend subclasses.

__le__

Return self<=value.

__lt__

Return self<value.

__ne__

Return self!=value.

__new__()

Create and return a new object. See help(type) for accurate signature.

__reduce__()

helper for pickle

__reduce_ex__()

helper for pickle

__repr__

Return repr(self).

__setattr__

Implement setattr(self, name, value).

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

apply(*args, **kwargs)

Overloaded function.

  1. apply(self: pyrosetta.rosetta.protocols.stepwise.monte_carlo.mover.AddMover, pose: pyrosetta.rosetta.core.pose.Pose, res_to_add_in_full_model_numbering: int, res_to_build_off_in_full_model_numbering: int) -> None

C++: protocols::stepwise::monte_carlo::mover::AddMover::apply(class core::pose::Pose &, const unsigned long, const unsigned long) –> void

  1. apply(self: pyrosetta.rosetta.protocols.stepwise.monte_carlo.mover.AddMover, pose: pyrosetta.rosetta.core.pose.Pose, swa_move: pyrosetta.rosetta.protocols.stepwise.monte_carlo.mover.StepWiseMove) -> None

C++: protocols::stepwise::monte_carlo::mover::AddMover::apply(class core::pose::Pose &, const class protocols::stepwise::monte_carlo::mover::StepWiseMove &) –> void

  1. apply(self: pyrosetta.rosetta.protocols.stepwise.monte_carlo.mover.AddMover, pose_to_visualize: pyrosetta.rosetta.core.pose.Pose) -> None

Apply the minimizer to one pose

C++: protocols::stepwise::monte_carlo::mover::AddMover::apply(class core::pose::Pose &) –> void

assign(self: pyrosetta.rosetta.protocols.stepwise.monte_carlo.mover.AddMover, : pyrosetta.rosetta.protocols.stepwise.monte_carlo.mover.AddMover) → pyrosetta.rosetta.protocols.stepwise.monte_carlo.mover.AddMover

C++: protocols::stepwise::monte_carlo::mover::AddMover::operator=(const class protocols::stepwise::monte_carlo::mover::AddMover &) –> class protocols::stepwise::monte_carlo::mover::AddMover &

clear_info(self: pyrosetta.rosetta.protocols.moves.Mover) → None

Strings container can be used to return miscellaneous info (as std::string) from a mover, such as notes about the results of apply(). The job distributor (Apr 09 vintage) will check this function to see if your protocol wants to add string info to the Job that ran this mover. One way this can be useful is that later, a JobOutputter may include/append this info to an output file.

clear_info is called by jd2 before calling apply

C++: protocols::moves::Mover::clear_info() –> void

clone(self: pyrosetta.rosetta.protocols.stepwise.monte_carlo.mover.AddMover) → pyrosetta.rosetta.protocols.moves.Mover

C++: protocols::stepwise::monte_carlo::mover::AddMover::clone() const –> class std::shared_ptr<class protocols::moves::Mover>

create(self: pyrosetta.rosetta.protocols.moves.Mover) → pyrosetta.rosetta.protocols.moves.Mover

C++: protocols::moves::Mover::create() –> class std::shared_ptr<class protocols::moves::Mover>

fresh_instance(self: pyrosetta.rosetta.protocols.stepwise.monte_carlo.mover.AddMover) → pyrosetta.rosetta.protocols.moves.Mover

C++: protocols::stepwise::monte_carlo::mover::AddMover::fresh_instance() const –> class std::shared_ptr<class protocols::moves::Mover>

get_additional_output(self: pyrosetta.rosetta.protocols.moves.Mover) → pyrosetta.rosetta.core.pose.Pose

fpd

Mechanism by which a mover may return multiple output poses from a single input pose.

C++: protocols::moves::Mover::get_additional_output() –> class std::shared_ptr<class core::pose::Pose>

get_current_job(self: pyrosetta.rosetta.protocols.moves.Mover) → protocols::jobdist::BasicJob

C++: protocols::moves::Mover::get_current_job() const –> class std::shared_ptr<const class protocols::jobdist::BasicJob>

get_current_tag(self: pyrosetta.rosetta.protocols.moves.Mover) → str
A tag is a unique identifier used to identify structures produced
by this Mover. get_current_tag() returns the tag, and set_current_tag( std::string tag ) sets the tag. This functionality is not intended for use with the 2008 job distributor.

C++: protocols::moves::Mover::get_current_tag() const –> std::string

get_input_pose(self: pyrosetta.rosetta.protocols.moves.Mover) → pyrosetta.rosetta.core.pose.Pose

C++: protocols::moves::Mover::get_input_pose() const –> class std::shared_ptr<const class core::pose::Pose>

get_last_move_status(self: pyrosetta.rosetta.protocols.moves.Mover) → pyrosetta.rosetta.protocols.moves.MoverStatus

returns status after an apply(). The job distributor (august 08 vintage) will check this function to see if your protocol wants to filter its results - if your protocol wants to say “that run was no good, skip it” then use the protected last_move_status(MoverStatus) to change the value that this function will return.

C++: protocols::moves::Mover::get_last_move_status() const –> enum protocols::moves::MoverStatus

get_name(self: pyrosetta.rosetta.protocols.stepwise.monte_carlo.mover.AddMover) → str

C++: protocols::stepwise::monte_carlo::mover::AddMover::get_name() const –> std::string

get_native_pose(self: pyrosetta.rosetta.protocols.moves.Mover) → pyrosetta.rosetta.core.pose.Pose

C++: protocols::moves::Mover::get_native_pose() const –> class std::shared_ptr<const class core::pose::Pose>

get_self_ptr(self: pyrosetta.rosetta.protocols.moves.Mover) → pyrosetta.rosetta.protocols.moves.Mover

C++: protocols::moves::Mover::get_self_ptr() –> class std::shared_ptr<class protocols::moves::Mover>

get_self_weak_ptr(self: pyrosetta.rosetta.protocols.moves.Mover) → pyrosetta.rosetta.std.weak_ptr_protocols_moves_Mover_t

C++: protocols::moves::Mover::get_self_weak_ptr() –> class std::weak_ptr<class protocols::moves::Mover>

get_type(self: pyrosetta.rosetta.protocols.moves.Mover) → str

C++: protocols::moves::Mover::get_type() const –> std::string

info(self: pyrosetta.rosetta.protocols.moves.Mover) → pyrosetta.rosetta.std.list_std_string_std_allocator_std_string_t

non-const accessor

C++: protocols::moves::Mover::info() –> class std::list<std::string, class std::allocator<std::string > > &

last_proposal_density_ratio(self: pyrosetta.rosetta.protocols.moves.Mover) → float

C++: protocols::moves::Mover::last_proposal_density_ratio() –> double

mover_name() → str

C++: protocols::stepwise::monte_carlo::mover::AddMover::mover_name() –> std::string

name() → str

C++: protocols::moves::Mover::name() –> std::string

provide_xml_schema(xsd: pyrosetta.rosetta.utility.tag.XMLSchemaDefinition) → None

C++: protocols::stepwise::monte_carlo::mover::AddMover::provide_xml_schema(class utility::tag::XMLSchemaDefinition &) –> void

register_options() → None

Overload this static method if you access options within the mover.

These options will end up in -help of your application if users of this mover call register_options. Do this recursively! If you use movers within your mover, call their register_options in your register_options() method.

C++: protocols::moves::Mover::register_options() –> void

reinitialize_for_each_job(self: pyrosetta.rosetta.protocols.moves.Mover) → bool
Inform the Job Distributor (August ‘08 vintage) whether this object needs to be freshly regenerated on
each use.

C++: protocols::moves::Mover::reinitialize_for_each_job() const –> bool

reinitialize_for_new_input(self: pyrosetta.rosetta.protocols.moves.Mover) → bool
Inform the Job Distributor (August ‘08 vintage) whether this object needs to be regenerated when the input
pose is about to change, (for example, if the Mover has special code on the first apply() that is only valid for that one input pose).

C++: protocols::moves::Mover::reinitialize_for_new_input() const –> bool

reset_status(self: pyrosetta.rosetta.protocols.moves.Mover) → None

resets status to SUCCESS, meant to be used before an apply(). The job distributor (august 08 vintage) uses this to ensure non-accumulation of status across apply()s.

C++: protocols::moves::Mover::reset_status() –> void

set_current_job(self: pyrosetta.rosetta.protocols.moves.Mover, job: protocols::jobdist::BasicJob) → None

////////////////////////////end Job Distributor interface////////////////////////////////////////

C++: protocols::moves::Mover::set_current_job(class std::shared_ptr<const class protocols::jobdist::BasicJob>) –> void

set_current_tag(self: pyrosetta.rosetta.protocols.moves.Mover, new_tag: str) → None

C++: protocols::moves::Mover::set_current_tag(const class std::basic_string<char> &) –> void

set_designing_with_noncanonicals(self: pyrosetta.rosetta.protocols.stepwise.monte_carlo.mover.AddMover, setting: bool) → None

C++: protocols::stepwise::monte_carlo::mover::AddMover::set_designing_with_noncanonicals(const bool) –> void

set_input_pose(self: pyrosetta.rosetta.protocols.moves.Mover, pose: pyrosetta.rosetta.core.pose.Pose) → None

setter for poses contained for rms

C++: protocols::moves::Mover::set_input_pose(class std::shared_ptr<const class core::pose::Pose>) –> void

set_internal_cycles(self: pyrosetta.rosetta.protocols.stepwise.monte_carlo.mover.AddMover, setting: int) → None

C++: protocols::stepwise::monte_carlo::mover::AddMover::set_internal_cycles(const unsigned long) –> void

set_kT(self: pyrosetta.rosetta.protocols.stepwise.monte_carlo.mover.AddMover, setting: float) → None

C++: protocols::stepwise::monte_carlo::mover::AddMover::set_kT(const double &) –> void

set_minimize_single_res(self: pyrosetta.rosetta.protocols.stepwise.monte_carlo.mover.AddMover, setting: int) → None

C++: protocols::stepwise::monte_carlo::mover::AddMover::set_minimize_single_res(const unsigned long) –> void

set_native_pose(self: pyrosetta.rosetta.protocols.moves.Mover, pose: pyrosetta.rosetta.core.pose.Pose) → None

setter for native poses contained for rms —- we should get rid of this method? it is widely used, but a bit unsafe

C++: protocols::moves::Mover::set_native_pose(class std::shared_ptr<const class core::pose::Pose>) –> void

set_presample_added_residue(self: pyrosetta.rosetta.protocols.stepwise.monte_carlo.mover.AddMover, setting: int) → None

C++: protocols::stepwise::monte_carlo::mover::AddMover::set_presample_added_residue(const unsigned long) –> void

set_presample_by_swa(self: pyrosetta.rosetta.protocols.stepwise.monte_carlo.mover.AddMover, setting: int) → None

C++: protocols::stepwise::monte_carlo::mover::AddMover::set_presample_by_swa(const unsigned long) –> void

set_sample_pH(self: pyrosetta.rosetta.protocols.stepwise.monte_carlo.mover.AddMover, setting: bool) → None

C++: protocols::stepwise::monte_carlo::mover::AddMover::set_sample_pH(const bool) –> void

set_sample_range_large(self: pyrosetta.rosetta.protocols.stepwise.monte_carlo.mover.AddMover, setting: float) → None

C++: protocols::stepwise::monte_carlo::mover::AddMover::set_sample_range_large(const double) –> void

set_sample_range_small(self: pyrosetta.rosetta.protocols.stepwise.monte_carlo.mover.AddMover, setting: float) → None

C++: protocols::stepwise::monte_carlo::mover::AddMover::set_sample_range_small(const double) –> void

set_start_added_residue_in_aform(self: pyrosetta.rosetta.protocols.stepwise.monte_carlo.mover.AddMover, setting: int) → None

C++: protocols::stepwise::monte_carlo::mover::AddMover::set_start_added_residue_in_aform(const unsigned long) –> void

set_stepwise_modeler(self: pyrosetta.rosetta.protocols.stepwise.monte_carlo.mover.AddMover, stepwise_modeler: pyrosetta.rosetta.protocols.stepwise.modeler.StepWiseModeler) → None

C++: protocols::stepwise::monte_carlo::mover::AddMover::set_stepwise_modeler(class std::shared_ptr<class protocols::stepwise::modeler::StepWiseModeler>) –> void

set_type(self: pyrosetta.rosetta.protocols.moves.Mover, setting: str) → None

C++: protocols::moves::Mover::set_type(const class std::basic_string<char> &) –> void

show(*args, **kwargs)

Overloaded function.

  1. show(self: pyrosetta.rosetta.protocols.moves.Mover) -> None
  2. show(self: pyrosetta.rosetta.protocols.moves.Mover, output: pyrosetta.rosetta.std.ostream) -> None

Outputs details about the Mover, including current settings.

C++: protocols::moves::Mover::show(class std::basic_ostream<char> &) const –> void

test_move(self: pyrosetta.rosetta.protocols.moves.Mover, pose: pyrosetta.rosetta.core.pose.Pose) → None
: Unit test support function. Apply one move to a given pose.
Allows extra test specific functions to be called before applying

C++: protocols::moves::Mover::test_move(class core::pose::Pose &) –> void

type(*args, **kwargs)

Overloaded function.

  1. type(self: pyrosetta.rosetta.protocols.moves.Mover) -> str

C++: protocols::moves::Mover::type() const –> const std::string &

  1. type(self: pyrosetta.rosetta.protocols.moves.Mover, type_in: str) -> None

C++: protocols::moves::Mover::type(const class std::basic_string<char> &) –> void

class pyrosetta.rosetta.protocols.stepwise.monte_carlo.mover.AddOrDeleteMover

Bases: pyrosetta.rosetta.protocols.moves.Mover

__delattr__

Implement delattr(self, name).

__dir__() → list

default dir() implementation

__eq__

Return self==value.

__format__()

default object formatter

__ge__

Return self>=value.

__getattribute__

Return getattr(self, name).

__gt__

Return self>value.

__hash__

Return hash(self).

__init__(*args, **kwargs)

Overloaded function.

  1. __init__(self: pyrosetta.rosetta.protocols.stepwise.monte_carlo.mover.AddOrDeleteMover, rna_add_mover: pyrosetta.rosetta.protocols.stepwise.monte_carlo.mover.AddMover, rna_delete_mover: protocols::stepwise::monte_carlo::mover::DeleteMover, rna_from_scratch_mover: protocols::stepwise::monte_carlo::mover::FromScratchMover) -> None
  2. __init__(self: pyrosetta.rosetta.protocols.stepwise.monte_carlo.mover.AddOrDeleteMover, arg0: pyrosetta.rosetta.protocols.stepwise.monte_carlo.mover.AddOrDeleteMover) -> None
__init_subclass__()

This method is called when a class is subclassed.

The default implementation does nothing. It may be overridden to extend subclasses.

__le__

Return self<=value.

__lt__

Return self<value.

__ne__

Return self!=value.

__new__()

Create and return a new object. See help(type) for accurate signature.

__reduce__()

helper for pickle

__reduce_ex__()

helper for pickle

__repr__

Return repr(self).

__setattr__

Implement setattr(self, name, value).

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

apply(*args, **kwargs)

Overloaded function.

  1. apply(self: pyrosetta.rosetta.protocols.stepwise.monte_carlo.mover.AddOrDeleteMover, pose: pyrosetta.rosetta.core.pose.Pose, swa_move: pyrosetta.rosetta.protocols.stepwise.monte_carlo.mover.StepWiseMove) -> None

C++: protocols::stepwise::monte_carlo::mover::AddOrDeleteMover::apply(class core::pose::Pose &, const class protocols::stepwise::monte_carlo::mover::StepWiseMove &) –> void

  1. apply(self: pyrosetta.rosetta.protocols.stepwise.monte_carlo.mover.AddOrDeleteMover, pose: pyrosetta.rosetta.core.pose.Pose, move_type_string: str) -> bool

C++: protocols::stepwise::monte_carlo::mover::AddOrDeleteMover::apply(class core::pose::Pose &, class std::basic_string<char> &) –> bool

  1. apply(self: pyrosetta.rosetta.protocols.stepwise.monte_carlo.mover.AddOrDeleteMover, pose_to_visualize: pyrosetta.rosetta.core.pose.Pose) -> None

Apply the minimizer to one pose

C++: protocols::stepwise::monte_carlo::mover::AddOrDeleteMover::apply(class core::pose::Pose &) –> void

assign(self: pyrosetta.rosetta.protocols.stepwise.monte_carlo.mover.AddOrDeleteMover, : pyrosetta.rosetta.protocols.stepwise.monte_carlo.mover.AddOrDeleteMover) → pyrosetta.rosetta.protocols.stepwise.monte_carlo.mover.AddOrDeleteMover

C++: protocols::stepwise::monte_carlo::mover::AddOrDeleteMover::operator=(const class protocols::stepwise::monte_carlo::mover::AddOrDeleteMover &) –> class protocols::stepwise::monte_carlo::mover::AddOrDeleteMover &

clear_info(self: pyrosetta.rosetta.protocols.moves.Mover) → None

Strings container can be used to return miscellaneous info (as std::string) from a mover, such as notes about the results of apply(). The job distributor (Apr 09 vintage) will check this function to see if your protocol wants to add string info to the Job that ran this mover. One way this can be useful is that later, a JobOutputter may include/append this info to an output file.

clear_info is called by jd2 before calling apply

C++: protocols::moves::Mover::clear_info() –> void

clone(self: pyrosetta.rosetta.protocols.moves.Mover) → pyrosetta.rosetta.protocols.moves.Mover

Return a clone of the Mover object.

C++: protocols::moves::Mover::clone() const –> class std::shared_ptr<class protocols::moves::Mover>

create(self: pyrosetta.rosetta.protocols.moves.Mover) → pyrosetta.rosetta.protocols.moves.Mover

C++: protocols::moves::Mover::create() –> class std::shared_ptr<class protocols::moves::Mover>

fresh_instance(self: pyrosetta.rosetta.protocols.moves.Mover) → pyrosetta.rosetta.protocols.moves.Mover

Generates a new Mover object freshly created with the default ctor.

C++: protocols::moves::Mover::fresh_instance() const –> class std::shared_ptr<class protocols::moves::Mover>

get_additional_output(self: pyrosetta.rosetta.protocols.moves.Mover) → pyrosetta.rosetta.core.pose.Pose

fpd

Mechanism by which a mover may return multiple output poses from a single input pose.

C++: protocols::moves::Mover::get_additional_output() –> class std::shared_ptr<class core::pose::Pose>

get_current_job(self: pyrosetta.rosetta.protocols.moves.Mover) → protocols::jobdist::BasicJob

C++: protocols::moves::Mover::get_current_job() const –> class std::shared_ptr<const class protocols::jobdist::BasicJob>

get_current_tag(self: pyrosetta.rosetta.protocols.moves.Mover) → str
A tag is a unique identifier used to identify structures produced
by this Mover. get_current_tag() returns the tag, and set_current_tag( std::string tag ) sets the tag. This functionality is not intended for use with the 2008 job distributor.

C++: protocols::moves::Mover::get_current_tag() const –> std::string

get_input_pose(self: pyrosetta.rosetta.protocols.moves.Mover) → pyrosetta.rosetta.core.pose.Pose

C++: protocols::moves::Mover::get_input_pose() const –> class std::shared_ptr<const class core::pose::Pose>

get_last_move_status(self: pyrosetta.rosetta.protocols.moves.Mover) → pyrosetta.rosetta.protocols.moves.MoverStatus

returns status after an apply(). The job distributor (august 08 vintage) will check this function to see if your protocol wants to filter its results - if your protocol wants to say “that run was no good, skip it” then use the protected last_move_status(MoverStatus) to change the value that this function will return.

C++: protocols::moves::Mover::get_last_move_status() const –> enum protocols::moves::MoverStatus

get_name(self: pyrosetta.rosetta.protocols.stepwise.monte_carlo.mover.AddOrDeleteMover) → str

C++: protocols::stepwise::monte_carlo::mover::AddOrDeleteMover::get_name() const –> std::string

get_native_pose(self: pyrosetta.rosetta.protocols.moves.Mover) → pyrosetta.rosetta.core.pose.Pose

C++: protocols::moves::Mover::get_native_pose() const –> class std::shared_ptr<const class core::pose::Pose>

get_self_ptr(self: pyrosetta.rosetta.protocols.moves.Mover) → pyrosetta.rosetta.protocols.moves.Mover

C++: protocols::moves::Mover::get_self_ptr() –> class std::shared_ptr<class protocols::moves::Mover>

get_self_weak_ptr(self: pyrosetta.rosetta.protocols.moves.Mover) → pyrosetta.rosetta.std.weak_ptr_protocols_moves_Mover_t

C++: protocols::moves::Mover::get_self_weak_ptr() –> class std::weak_ptr<class protocols::moves::Mover>

get_type(self: pyrosetta.rosetta.protocols.moves.Mover) → str

C++: protocols::moves::Mover::get_type() const –> std::string

info(self: pyrosetta.rosetta.protocols.moves.Mover) → pyrosetta.rosetta.std.list_std_string_std_allocator_std_string_t

non-const accessor

C++: protocols::moves::Mover::info() –> class std::list<std::string, class std::allocator<std::string > > &

last_proposal_density_ratio(self: pyrosetta.rosetta.protocols.moves.Mover) → float

C++: protocols::moves::Mover::last_proposal_density_ratio() –> double

name() → str

C++: protocols::moves::Mover::name() –> std::string

register_options() → None

Overload this static method if you access options within the mover.

These options will end up in -help of your application if users of this mover call register_options. Do this recursively! If you use movers within your mover, call their register_options in your register_options() method.

C++: protocols::moves::Mover::register_options() –> void

reinitialize_for_each_job(self: pyrosetta.rosetta.protocols.moves.Mover) → bool
Inform the Job Distributor (August ‘08 vintage) whether this object needs to be freshly regenerated on
each use.

C++: protocols::moves::Mover::reinitialize_for_each_job() const –> bool

reinitialize_for_new_input(self: pyrosetta.rosetta.protocols.moves.Mover) → bool
Inform the Job Distributor (August ‘08 vintage) whether this object needs to be regenerated when the input
pose is about to change, (for example, if the Mover has special code on the first apply() that is only valid for that one input pose).

C++: protocols::moves::Mover::reinitialize_for_new_input() const –> bool

reset_status(self: pyrosetta.rosetta.protocols.moves.Mover) → None

resets status to SUCCESS, meant to be used before an apply(). The job distributor (august 08 vintage) uses this to ensure non-accumulation of status across apply()s.

C++: protocols::moves::Mover::reset_status() –> void

set_choose_random(self: pyrosetta.rosetta.protocols.stepwise.monte_carlo.mover.AddOrDeleteMover, setting: bool) → None

C++: protocols::stepwise::monte_carlo::mover::AddOrDeleteMover::set_choose_random(const bool) –> void

set_current_job(self: pyrosetta.rosetta.protocols.moves.Mover, job: protocols::jobdist::BasicJob) → None

////////////////////////////end Job Distributor interface////////////////////////////////////////

C++: protocols::moves::Mover::set_current_job(class std::shared_ptr<const class protocols::jobdist::BasicJob>) –> void

set_current_tag(self: pyrosetta.rosetta.protocols.moves.Mover, new_tag: str) → None

C++: protocols::moves::Mover::set_current_tag(const class std::basic_string<char> &) –> void

set_disallow_deletion_of_last_residue(self: pyrosetta.rosetta.protocols.stepwise.monte_carlo.mover.AddOrDeleteMover, setting: bool) → None

C++: protocols::stepwise::monte_carlo::mover::AddOrDeleteMover::set_disallow_deletion_of_last_residue(const bool) –> void

set_input_pose(self: pyrosetta.rosetta.protocols.moves.Mover, pose: pyrosetta.rosetta.core.pose.Pose) → None

setter for poses contained for rms

C++: protocols::moves::Mover::set_input_pose(class std::shared_ptr<const class core::pose::Pose>) –> void

set_minimize_single_res(self: pyrosetta.rosetta.protocols.stepwise.monte_carlo.mover.AddOrDeleteMover, setting: bool) → None

C++: protocols::stepwise::monte_carlo::mover::AddOrDeleteMover::set_minimize_single_res(const bool) –> void

set_native_pose(self: pyrosetta.rosetta.protocols.moves.Mover, pose: pyrosetta.rosetta.core.pose.Pose) → None

setter for native poses contained for rms —- we should get rid of this method? it is widely used, but a bit unsafe

C++: protocols::moves::Mover::set_native_pose(class std::shared_ptr<const class core::pose::Pose>) –> void

set_options(self: pyrosetta.rosetta.protocols.stepwise.monte_carlo.mover.AddOrDeleteMover, options: protocols::stepwise::monte_carlo::options::StepWiseMonteCarloOptions) → None

C++: protocols::stepwise::monte_carlo::mover::AddOrDeleteMover::set_options(class std::shared_ptr<const class protocols::stepwise::monte_carlo::options::StepWiseMonteCarloOptions>) –> void

set_submotif_library(self: pyrosetta.rosetta.protocols.stepwise.monte_carlo.mover.AddOrDeleteMover, setting: protocols::stepwise::monte_carlo::submotif::SubMotifLibrary) → None

C++: protocols::stepwise::monte_carlo::mover::AddOrDeleteMover::set_submotif_library(class std::shared_ptr<const class protocols::stepwise::monte_carlo::submotif::SubMotifLibrary>) –> void

set_type(self: pyrosetta.rosetta.protocols.moves.Mover, setting: str) → None

C++: protocols::moves::Mover::set_type(const class std::basic_string<char> &) –> void

show(*args, **kwargs)

Overloaded function.

  1. show(self: pyrosetta.rosetta.protocols.moves.Mover) -> None
  2. show(self: pyrosetta.rosetta.protocols.moves.Mover, output: pyrosetta.rosetta.std.ostream) -> None

Outputs details about the Mover, including current settings.

C++: protocols::moves::Mover::show(class std::basic_ostream<char> &) const –> void

submotif_library(self: pyrosetta.rosetta.protocols.stepwise.monte_carlo.mover.AddOrDeleteMover) → protocols::stepwise::monte_carlo::submotif::SubMotifLibrary

C++: protocols::stepwise::monte_carlo::mover::AddOrDeleteMover::submotif_library() –> class std::shared_ptr<const class protocols::stepwise::monte_carlo::submotif::SubMotifLibrary>

test_move(self: pyrosetta.rosetta.protocols.moves.Mover, pose: pyrosetta.rosetta.core.pose.Pose) → None
: Unit test support function. Apply one move to a given pose.
Allows extra test specific functions to be called before applying

C++: protocols::moves::Mover::test_move(class core::pose::Pose &) –> void

type(*args, **kwargs)

Overloaded function.

  1. type(self: pyrosetta.rosetta.protocols.moves.Mover) -> str

C++: protocols::moves::Mover::type() const –> const std::string &

  1. type(self: pyrosetta.rosetta.protocols.moves.Mover, type_in: str) -> None

C++: protocols::moves::Mover::type(const class std::basic_string<char> &) –> void

class pyrosetta.rosetta.protocols.stepwise.monte_carlo.mover.Attachment

Bases: pybind11_builtins.pybind11_object

__delattr__

Implement delattr(self, name).

__dir__() → list

default dir() implementation

__eq__

Return self==value.

__format__()

default object formatter

__ge__

Return self>=value.

__getattribute__

Return getattr(self, name).

__gt__

Return self>value.

__hash__

Return hash(self).

__init__(*args, **kwargs)

Overloaded function.

  1. __init__(self: pyrosetta.rosetta.protocols.stepwise.monte_carlo.mover.Attachment) -> None
  2. __init__(self: pyrosetta.rosetta.protocols.stepwise.monte_carlo.mover.Attachment, attachment_res: int, attachment_type: pyrosetta.rosetta.protocols.stepwise.monte_carlo.mover.AttachmentType) -> None
  3. __init__(self: pyrosetta.rosetta.protocols.stepwise.monte_carlo.mover.Attachment, arg0: pyrosetta.rosetta.protocols.stepwise.monte_carlo.mover.Attachment) -> None
__init_subclass__()

This method is called when a class is subclassed.

The default implementation does nothing. It may be overridden to extend subclasses.

__le__

Return self<=value.

__lt__

Return self<value.

__ne__

Return self!=value.

__new__()

Create and return a new object. See help(type) for accurate signature.

__reduce__()

helper for pickle

__reduce_ex__()

helper for pickle

__repr__

Return repr(self).

__setattr__

Implement setattr(self, name, value).

__sizeof__() → int

size of object in memory, in bytes

__str__(self: pyrosetta.rosetta.protocols.stepwise.monte_carlo.mover.Attachment) → str
__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).

assign(self: pyrosetta.rosetta.protocols.stepwise.monte_carlo.mover.Attachment, : pyrosetta.rosetta.protocols.stepwise.monte_carlo.mover.Attachment) → pyrosetta.rosetta.protocols.stepwise.monte_carlo.mover.Attachment

C++: protocols::stepwise::monte_carlo::mover::Attachment::operator=(const class protocols::stepwise::monte_carlo::mover::Attachment &) –> class protocols::stepwise::monte_carlo::mover::Attachment &

attached_res(self: pyrosetta.rosetta.protocols.stepwise.monte_carlo.mover.Attachment) → int

C++: protocols::stepwise::monte_carlo::mover::Attachment::attached_res() const –> unsigned long

attachment_type(self: pyrosetta.rosetta.protocols.stepwise.monte_carlo.mover.Attachment) → pyrosetta.rosetta.protocols.stepwise.monte_carlo.mover.AttachmentType

C++: protocols::stepwise::monte_carlo::mover::Attachment::attachment_type() const –> enum protocols::stepwise::monte_carlo::mover::AttachmentType

set_attached_res(self: pyrosetta.rosetta.protocols.stepwise.monte_carlo.mover.Attachment, setting: int) → None

C++: protocols::stepwise::monte_carlo::mover::Attachment::set_attached_res(const unsigned long &) –> void

set_attachment_type(self: pyrosetta.rosetta.protocols.stepwise.monte_carlo.mover.Attachment, setting: pyrosetta.rosetta.protocols.stepwise.monte_carlo.mover.AttachmentType) → None

C++: protocols::stepwise::monte_carlo::mover::Attachment::set_attachment_type(const enum protocols::stepwise::monte_carlo::mover::AttachmentType &) –> void

class pyrosetta.rosetta.protocols.stepwise.monte_carlo.mover.DeleteMover

Bases: pyrosetta.rosetta.protocols.moves.Mover

__delattr__

Implement delattr(self, name).

__dir__() → list

default dir() implementation

__eq__

Return self==value.

__format__()

default object formatter

__ge__

Return self>=value.

__getattribute__

Return getattr(self, name).

__gt__

Return self>value.

__hash__

Return hash(self).

__init__(*args, **kwargs)

Overloaded function.

  1. __init__(self: pyrosetta.rosetta.protocols.stepwise.monte_carlo.mover.DeleteMover) -> None
  2. __init__(self: pyrosetta.rosetta.protocols.stepwise.monte_carlo.mover.DeleteMover, arg0: pyrosetta.rosetta.protocols.stepwise.monte_carlo.mover.DeleteMover) -> None
__init_subclass__()

This method is called when a class is subclassed.

The default implementation does nothing. It may be overridden to extend subclasses.

__le__

Return self<=value.

__lt__

Return self<value.

__ne__

Return self!=value.

__new__()

Create and return a new object. See help(type) for accurate signature.

__reduce__()

helper for pickle

__reduce_ex__()

helper for pickle

__repr__

Return repr(self).

__setattr__

Implement setattr(self, name, value).

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

apply(*args, **kwargs)

Overloaded function.

  1. apply(self: pyrosetta.rosetta.protocols.stepwise.monte_carlo.mover.DeleteMover, pose: pyrosetta.rosetta.core.pose.Pose, res_to_delete_in_full_model_numbering: int) -> None

C++: protocols::stepwise::monte_carlo::mover::DeleteMover::apply(class core::pose::Pose &, const unsigned long) –> void

  1. apply(self: pyrosetta.rosetta.protocols.stepwise.monte_carlo.mover.DeleteMover, pose: pyrosetta.rosetta.core.pose.Pose, residues_to_delete_in_full_model_numbering: pyrosetta.rosetta.utility.vector1_unsigned_long) -> None

C++: protocols::stepwise::monte_carlo::mover::DeleteMover::apply(class core::pose::Pose &, const class utility::vector1<unsigned long, class std::allocator<unsigned long> > &) –> void

  1. apply(self: pyrosetta.rosetta.protocols.stepwise.monte_carlo.mover.DeleteMover, pose_to_visualize: pyrosetta.rosetta.core.pose.Pose) -> None

Apply the minimizer to one pose

C++: protocols::stepwise::monte_carlo::mover::DeleteMover::apply(class core::pose::Pose &) –> void

assign(self: pyrosetta.rosetta.protocols.stepwise.monte_carlo.mover.DeleteMover, : pyrosetta.rosetta.protocols.stepwise.monte_carlo.mover.DeleteMover) → pyrosetta.rosetta.protocols.stepwise.monte_carlo.mover.DeleteMover

C++: protocols::stepwise::monte_carlo::mover::DeleteMover::operator=(const class protocols::stepwise::monte_carlo::mover::DeleteMover &) –> class protocols::stepwise::monte_carlo::mover::DeleteMover &

clear_info(self: pyrosetta.rosetta.protocols.moves.Mover) → None

Strings container can be used to return miscellaneous info (as std::string) from a mover, such as notes about the results of apply(). The job distributor (Apr 09 vintage) will check this function to see if your protocol wants to add string info to the Job that ran this mover. One way this can be useful is that later, a JobOutputter may include/append this info to an output file.

clear_info is called by jd2 before calling apply

C++: protocols::moves::Mover::clear_info() –> void

clone(self: pyrosetta.rosetta.protocols.stepwise.monte_carlo.mover.DeleteMover) → pyrosetta.rosetta.protocols.moves.Mover

C++: protocols::stepwise::monte_carlo::mover::DeleteMover::clone() const –> class std::shared_ptr<class protocols::moves::Mover>

create(self: pyrosetta.rosetta.protocols.moves.Mover) → pyrosetta.rosetta.protocols.moves.Mover

C++: protocols::moves::Mover::create() –> class std::shared_ptr<class protocols::moves::Mover>

decide_to_keep_pose(self: pyrosetta.rosetta.protocols.stepwise.monte_carlo.mover.DeleteMover, pose: pyrosetta.rosetta.core.pose.Pose) → bool

C++: protocols::stepwise::monte_carlo::mover::DeleteMover::decide_to_keep_pose(const class core::pose::Pose &) const –> bool

fresh_instance(self: pyrosetta.rosetta.protocols.stepwise.monte_carlo.mover.DeleteMover) → pyrosetta.rosetta.protocols.moves.Mover

C++: protocols::stepwise::monte_carlo::mover::DeleteMover::fresh_instance() const –> class std::shared_ptr<class protocols::moves::Mover>

get_additional_output(self: pyrosetta.rosetta.protocols.moves.Mover) → pyrosetta.rosetta.core.pose.Pose

fpd

Mechanism by which a mover may return multiple output poses from a single input pose.

C++: protocols::moves::Mover::get_additional_output() –> class std::shared_ptr<class core::pose::Pose>

get_current_job(self: pyrosetta.rosetta.protocols.moves.Mover) → protocols::jobdist::BasicJob

C++: protocols::moves::Mover::get_current_job() const –> class std::shared_ptr<const class protocols::jobdist::BasicJob>

get_current_tag(self: pyrosetta.rosetta.protocols.moves.Mover) → str
A tag is a unique identifier used to identify structures produced
by this Mover. get_current_tag() returns the tag, and set_current_tag( std::string tag ) sets the tag. This functionality is not intended for use with the 2008 job distributor.

C++: protocols::moves::Mover::get_current_tag() const –> std::string

get_input_pose(self: pyrosetta.rosetta.protocols.moves.Mover) → pyrosetta.rosetta.core.pose.Pose

C++: protocols::moves::Mover::get_input_pose() const –> class std::shared_ptr<const class core::pose::Pose>

get_last_move_status(self: pyrosetta.rosetta.protocols.moves.Mover) → pyrosetta.rosetta.protocols.moves.MoverStatus

returns status after an apply(). The job distributor (august 08 vintage) will check this function to see if your protocol wants to filter its results - if your protocol wants to say “that run was no good, skip it” then use the protected last_move_status(MoverStatus) to change the value that this function will return.

C++: protocols::moves::Mover::get_last_move_status() const –> enum protocols::moves::MoverStatus

get_name(self: pyrosetta.rosetta.protocols.stepwise.monte_carlo.mover.DeleteMover) → str

C++: protocols::stepwise::monte_carlo::mover::DeleteMover::get_name() const –> std::string

get_native_pose(self: pyrosetta.rosetta.protocols.moves.Mover) → pyrosetta.rosetta.core.pose.Pose

C++: protocols::moves::Mover::get_native_pose() const –> class std::shared_ptr<const class core::pose::Pose>

get_self_ptr(self: pyrosetta.rosetta.protocols.moves.Mover) → pyrosetta.rosetta.protocols.moves.Mover

C++: protocols::moves::Mover::get_self_ptr() –> class std::shared_ptr<class protocols::moves::Mover>

get_self_weak_ptr(self: pyrosetta.rosetta.protocols.moves.Mover) → pyrosetta.rosetta.std.weak_ptr_protocols_moves_Mover_t

C++: protocols::moves::Mover::get_self_weak_ptr() –> class std::weak_ptr<class protocols::moves::Mover>

get_type(self: pyrosetta.rosetta.protocols.moves.Mover) → str

C++: protocols::moves::Mover::get_type() const –> std::string

info(self: pyrosetta.rosetta.protocols.moves.Mover) → pyrosetta.rosetta.std.list_std_string_std_allocator_std_string_t

non-const accessor

C++: protocols::moves::Mover::info() –> class std::list<std::string, class std::allocator<std::string > > &

last_proposal_density_ratio(self: pyrosetta.rosetta.protocols.moves.Mover) → float

C++: protocols::moves::Mover::last_proposal_density_ratio() –> double

minimize_after_delete(self: pyrosetta.rosetta.protocols.stepwise.monte_carlo.mover.DeleteMover, pose: pyrosetta.rosetta.core.pose.Pose) → None

C++: protocols::stepwise::monte_carlo::mover::DeleteMover::minimize_after_delete(class core::pose::Pose &) const –> void

mover_name() → str

C++: protocols::stepwise::monte_carlo::mover::DeleteMover::mover_name() –> std::string

name() → str

C++: protocols::moves::Mover::name() –> std::string

provide_xml_schema(xsd: pyrosetta.rosetta.utility.tag.XMLSchemaDefinition) → None

C++: protocols::stepwise::monte_carlo::mover::DeleteMover::provide_xml_schema(class utility::tag::XMLSchemaDefinition &) –> void

register_options() → None

Overload this static method if you access options within the mover.

These options will end up in -help of your application if users of this mover call register_options. Do this recursively! If you use movers within your mover, call their register_options in your register_options() method.

C++: protocols::moves::Mover::register_options() –> void

reinitialize_for_each_job(self: pyrosetta.rosetta.protocols.moves.Mover) → bool
Inform the Job Distributor (August ‘08 vintage) whether this object needs to be freshly regenerated on
each use.

C++: protocols::moves::Mover::reinitialize_for_each_job() const –> bool

reinitialize_for_new_input(self: pyrosetta.rosetta.protocols.moves.Mover) → bool
Inform the Job Distributor (August ‘08 vintage) whether this object needs to be regenerated when the input
pose is about to change, (for example, if the Mover has special code on the first apply() that is only valid for that one input pose).

C++: protocols::moves::Mover::reinitialize_for_new_input() const –> bool

remove_singletons_and_update_pose_focus(self: pyrosetta.rosetta.protocols.stepwise.monte_carlo.mover.DeleteMover, pose: pyrosetta.rosetta.core.pose.Pose, sliced_out_pose_op: pyrosetta.rosetta.core.pose.Pose, keep_remainder_pose: bool, keep_sliced_out_pose: bool) → None

C++: protocols::stepwise::monte_carlo::mover::DeleteMover::remove_singletons_and_update_pose_focus(class core::pose::Pose &, class std::shared_ptr<class core::pose::Pose>, bool &, bool &) const –> void

reset_status(self: pyrosetta.rosetta.protocols.moves.Mover) → None

resets status to SUCCESS, meant to be used before an apply(). The job distributor (august 08 vintage) uses this to ensure non-accumulation of status across apply()s.

C++: protocols::moves::Mover::reset_status() –> void

set_current_job(self: pyrosetta.rosetta.protocols.moves.Mover, job: protocols::jobdist::BasicJob) → None

////////////////////////////end Job Distributor interface////////////////////////////////////////

C++: protocols::moves::Mover::set_current_job(class std::shared_ptr<const class protocols::jobdist::BasicJob>) –> void

set_current_tag(self: pyrosetta.rosetta.protocols.moves.Mover, new_tag: str) → None

C++: protocols::moves::Mover::set_current_tag(const class std::basic_string<char> &) –> void

set_input_pose(self: pyrosetta.rosetta.protocols.moves.Mover, pose: pyrosetta.rosetta.core.pose.Pose) → None

setter for poses contained for rms

C++: protocols::moves::Mover::set_input_pose(class std::shared_ptr<const class core::pose::Pose>) –> void

set_minimize_after_delete(self: pyrosetta.rosetta.protocols.stepwise.monte_carlo.mover.DeleteMover, setting: bool) → None

C++: protocols::stepwise::monte_carlo::mover::DeleteMover::set_minimize_after_delete(const bool) –> void

set_native_pose(self: pyrosetta.rosetta.protocols.moves.Mover, pose: pyrosetta.rosetta.core.pose.Pose) → None

setter for native poses contained for rms —- we should get rid of this method? it is widely used, but a bit unsafe

C++: protocols::moves::Mover::set_native_pose(class std::shared_ptr<const class core::pose::Pose>) –> void

set_options(self: pyrosetta.rosetta.protocols.stepwise.monte_carlo.mover.DeleteMover, options: protocols::stepwise::monte_carlo::options::StepWiseMonteCarloOptions) → None

C++: protocols::stepwise::monte_carlo::mover::DeleteMover::set_options(class std::shared_ptr<const class protocols::stepwise::monte_carlo::options::StepWiseMonteCarloOptions>) –> void

set_stepwise_modeler(self: pyrosetta.rosetta.protocols.stepwise.monte_carlo.mover.DeleteMover, stepwise_modeler: pyrosetta.rosetta.protocols.stepwise.modeler.StepWiseModeler) → None

C++: protocols::stepwise::monte_carlo::mover::DeleteMover::set_stepwise_modeler(class std::shared_ptr<class protocols::stepwise::modeler::StepWiseModeler>) –> void

set_type(self: pyrosetta.rosetta.protocols.moves.Mover, setting: str) → None

C++: protocols::moves::Mover::set_type(const class std::basic_string<char> &) –> void

show(*args, **kwargs)

Overloaded function.

  1. show(self: pyrosetta.rosetta.protocols.moves.Mover) -> None
  2. show(self: pyrosetta.rosetta.protocols.moves.Mover, output: pyrosetta.rosetta.std.ostream) -> None

Outputs details about the Mover, including current settings.

C++: protocols::moves::Mover::show(class std::basic_ostream<char> &) const –> void

test_move(self: pyrosetta.rosetta.protocols.moves.Mover, pose: pyrosetta.rosetta.core.pose.Pose) → None
: Unit test support function. Apply one move to a given pose.
Allows extra test specific functions to be called before applying

C++: protocols::moves::Mover::test_move(class core::pose::Pose &) –> void

type(*args, **kwargs)

Overloaded function.

  1. type(self: pyrosetta.rosetta.protocols.moves.Mover) -> str

C++: protocols::moves::Mover::type() const –> const std::string &

  1. type(self: pyrosetta.rosetta.protocols.moves.Mover, type_in: str) -> None

C++: protocols::moves::Mover::type(const class std::basic_string<char> &) –> void

wipe_out_moving_residues(self: pyrosetta.rosetta.protocols.stepwise.monte_carlo.mover.DeleteMover, pose: pyrosetta.rosetta.core.pose.Pose) → None

C++: protocols::stepwise::monte_carlo::mover::DeleteMover::wipe_out_moving_residues(class core::pose::Pose &) –> void

class pyrosetta.rosetta.protocols.stepwise.monte_carlo.mover.StepWiseMove

Bases: pybind11_builtins.pybind11_object

__delattr__

Implement delattr(self, name).

__dir__() → list

default dir() implementation

__eq__

Return self==value.

__format__()

default object formatter

__ge__

Return self>=value.

__getattribute__

Return getattr(self, name).

__gt__

Return self>value.

__hash__

Return hash(self).

__init__(*args, **kwargs)

Overloaded function.

  1. __init__(self: pyrosetta.rosetta.protocols.stepwise.monte_carlo.mover.StepWiseMove) -> None
  2. __init__(self: pyrosetta.rosetta.protocols.stepwise.monte_carlo.mover.StepWiseMove, move_element: pyrosetta.rosetta.utility.vector1_unsigned_long, attachments: pyrosetta.rosetta.utility.vector1_protocols_stepwise_monte_carlo_mover_Attachment, move_type: pyrosetta.rosetta.protocols.stepwise.monte_carlo.mover.MoveType) -> None
  3. __init__(self: pyrosetta.rosetta.protocols.stepwise.monte_carlo.mover.StepWiseMove, move_element: pyrosetta.rosetta.utility.vector1_unsigned_long, attachments: pyrosetta.rosetta.utility.vector1_protocols_stepwise_monte_carlo_mover_Attachment, move_type: pyrosetta.rosetta.protocols.stepwise.monte_carlo.mover.MoveType, submotif_tag: str) -> None
  4. __init__(self: pyrosetta.rosetta.protocols.stepwise.monte_carlo.mover.StepWiseMove, move_element: pyrosetta.rosetta.utility.vector1_unsigned_long, attachment: pyrosetta.rosetta.protocols.stepwise.monte_carlo.mover.Attachment, move_type: pyrosetta.rosetta.protocols.stepwise.monte_carlo.mover.MoveType) -> None
  5. __init__(self: pyrosetta.rosetta.protocols.stepwise.monte_carlo.mover.StepWiseMove, moving_res: int, attachments: pyrosetta.rosetta.utility.vector1_protocols_stepwise_monte_carlo_mover_Attachment, move_type: pyrosetta.rosetta.protocols.stepwise.monte_carlo.mover.MoveType) -> None
  6. __init__(self: pyrosetta.rosetta.protocols.stepwise.monte_carlo.mover.StepWiseMove, moving_res: int, attachment: pyrosetta.rosetta.protocols.stepwise.monte_carlo.mover.Attachment, move_type: pyrosetta.rosetta.protocols.stepwise.monte_carlo.mover.MoveType) -> None
  7. __init__(self: pyrosetta.rosetta.protocols.stepwise.monte_carlo.mover.StepWiseMove, arg0: pyrosetta.rosetta.protocols.stepwise.monte_carlo.mover.StepWiseMove) -> None
  8. __init__(self: pyrosetta.rosetta.protocols.stepwise.monte_carlo.mover.StepWiseMove, arg0: pyrosetta.rosetta.utility.vector1_std_string) -> None

doc

  1. __init__(self: pyrosetta.rosetta.protocols.stepwise.monte_carlo.mover.StepWiseMove, swa_move_string_vector: pyrosetta.rosetta.utility.vector1_std_string, full_model_parameters: pyrosetta.rosetta.core.pose.full_model_info.FullModelParameters) -> None
__init_subclass__()

This method is called when a class is subclassed.

The default implementation does nothing. It may be overridden to extend subclasses.

__le__

Return self<=value.

__lt__

Return self<value.

__ne__

Return self!=value.

__new__()

Create and return a new object. See help(type) for accurate signature.

__reduce__()

helper for pickle

__reduce_ex__()

helper for pickle

__repr__

Return repr(self).

__setattr__

Implement setattr(self, name, value).

__sizeof__() → int

size of object in memory, in bytes

__str__(self: pyrosetta.rosetta.protocols.stepwise.monte_carlo.mover.StepWiseMove) → str
__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).

assign(self: pyrosetta.rosetta.protocols.stepwise.monte_carlo.mover.StepWiseMove, : pyrosetta.rosetta.protocols.stepwise.monte_carlo.mover.StepWiseMove) → pyrosetta.rosetta.protocols.stepwise.monte_carlo.mover.StepWiseMove

C++: protocols::stepwise::monte_carlo::mover::StepWiseMove::operator=(const class protocols::stepwise::monte_carlo::mover::StepWiseMove &) –> class protocols::stepwise::monte_carlo::mover::StepWiseMove &

attached_res(self: pyrosetta.rosetta.protocols.stepwise.monte_carlo.mover.StepWiseMove) → int

C++: protocols::stepwise::monte_carlo::mover::StepWiseMove::attached_res() const –> unsigned long

attachment_type(self: pyrosetta.rosetta.protocols.stepwise.monte_carlo.mover.StepWiseMove) → pyrosetta.rosetta.protocols.stepwise.monte_carlo.mover.AttachmentType

C++: protocols::stepwise::monte_carlo::mover::StepWiseMove::attachment_type() const –> enum protocols::stepwise::monte_carlo::mover::AttachmentType

attachments(self: pyrosetta.rosetta.protocols.stepwise.monte_carlo.mover.StepWiseMove) → pyrosetta.rosetta.utility.vector1_protocols_stepwise_monte_carlo_mover_Attachment

C++: protocols::stepwise::monte_carlo::mover::StepWiseMove::attachments() const –> class utility::vector1<class protocols::stepwise::monte_carlo::mover::Attachment, class std::allocator<class protocols::stepwise::monte_carlo::mover::Attachment> >

is_jump(self: pyrosetta.rosetta.protocols.stepwise.monte_carlo.mover.StepWiseMove) → bool

C++: protocols::stepwise::monte_carlo::mover::StepWiseMove::is_jump() –> bool

move_element(self: pyrosetta.rosetta.protocols.stepwise.monte_carlo.mover.StepWiseMove) → pyrosetta.rosetta.utility.vector1_unsigned_long

C++: protocols::stepwise::monte_carlo::mover::StepWiseMove::move_element() const –> class utility::vector1<unsigned long, class std::allocator<unsigned long> >

move_type(self: pyrosetta.rosetta.protocols.stepwise.monte_carlo.mover.StepWiseMove) → pyrosetta.rosetta.protocols.stepwise.monte_carlo.mover.MoveType

C++: protocols::stepwise::monte_carlo::mover::StepWiseMove::move_type() const –> enum protocols::stepwise::monte_carlo::mover::MoveType

moving_res(self: pyrosetta.rosetta.protocols.stepwise.monte_carlo.mover.StepWiseMove) → int

C++: protocols::stepwise::monte_carlo::mover::StepWiseMove::moving_res() const –> unsigned long

set_attachments(self: pyrosetta.rosetta.protocols.stepwise.monte_carlo.mover.StepWiseMove, setting: pyrosetta.rosetta.utility.vector1_protocols_stepwise_monte_carlo_mover_Attachment) → None

C++: protocols::stepwise::monte_carlo::mover::StepWiseMove::set_attachments(const class utility::vector1<class protocols::stepwise::monte_carlo::mover::Attachment, class std::allocator<class protocols::stepwise::monte_carlo::mover::Attachment> > &) –> void

set_move_element(self: pyrosetta.rosetta.protocols.stepwise.monte_carlo.mover.StepWiseMove, setting: pyrosetta.rosetta.utility.vector1_unsigned_long) → None

C++: protocols::stepwise::monte_carlo::mover::StepWiseMove::set_move_element(const class utility::vector1<unsigned long, class std::allocator<unsigned long> > &) –> void

set_move_type(self: pyrosetta.rosetta.protocols.stepwise.monte_carlo.mover.StepWiseMove, setting: pyrosetta.rosetta.protocols.stepwise.monte_carlo.mover.MoveType) → None

C++: protocols::stepwise::monte_carlo::mover::StepWiseMove::set_move_type(const enum protocols::stepwise::monte_carlo::mover::MoveType &) –> void

submotif_tag(self: pyrosetta.rosetta.protocols.stepwise.monte_carlo.mover.StepWiseMove) → str

C++: protocols::stepwise::monte_carlo::mover::StepWiseMove::submotif_tag() const –> const std::string &

class pyrosetta.rosetta.protocols.stepwise.monte_carlo.mover.VaryLoopLengthMover

Bases: pyrosetta.rosetta.protocols.moves.Mover

In stepwise design, vary desired loop lengths by updating FullModelParameters

__delattr__

Implement delattr(self, name).

__dir__() → list

default dir() implementation

__eq__

Return self==value.

__format__()

default object formatter

__ge__

Return self>=value.

__getattribute__

Return getattr(self, name).

__gt__

Return self>value.

__hash__

Return hash(self).

__init__(*args, **kwargs)

Overloaded function.

  1. __init__(self: pyrosetta.rosetta.protocols.stepwise.monte_carlo.mover.VaryLoopLengthMover) -> None
  2. __init__(self: pyrosetta.rosetta.protocols.stepwise.monte_carlo.mover.VaryLoopLengthMover, arg0: pyrosetta.rosetta.protocols.stepwise.monte_carlo.mover.VaryLoopLengthMover) -> None
__init_subclass__()

This method is called when a class is subclassed.

The default implementation does nothing. It may be overridden to extend subclasses.

__le__

Return self<=value.

__lt__

Return self<value.

__ne__

Return self!=value.

__new__()

Create and return a new object. See help(type) for accurate signature.

__reduce__()

helper for pickle

__reduce_ex__()

helper for pickle

__repr__

Return repr(self).

__setattr__

Implement setattr(self, name, value).

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

apply(*args, **kwargs)

Overloaded function.

  1. apply(self: pyrosetta.rosetta.protocols.stepwise.monte_carlo.mover.VaryLoopLengthMover, pose: pyrosetta.rosetta.core.pose.Pose, swa_move: pyrosetta.rosetta.protocols.stepwise.monte_carlo.mover.StepWiseMove) -> None

C++: protocols::stepwise::monte_carlo::mover::VaryLoopLengthMover::apply(class core::pose::Pose &, const class protocols::stepwise::monte_carlo::mover::StepWiseMove &) –> void

  1. apply(self: pyrosetta.rosetta.protocols.stepwise.monte_carlo.mover.VaryLoopLengthMover, pose: pyrosetta.rosetta.core.pose.Pose) -> None

C++: protocols::stepwise::monte_carlo::mover::VaryLoopLengthMover::apply(class core::pose::Pose &) –> void

assign(self: pyrosetta.rosetta.protocols.stepwise.monte_carlo.mover.VaryLoopLengthMover, : pyrosetta.rosetta.protocols.stepwise.monte_carlo.mover.VaryLoopLengthMover) → pyrosetta.rosetta.protocols.stepwise.monte_carlo.mover.VaryLoopLengthMover

C++: protocols::stepwise::monte_carlo::mover::VaryLoopLengthMover::operator=(const class protocols::stepwise::monte_carlo::mover::VaryLoopLengthMover &) –> class protocols::stepwise::monte_carlo::mover::VaryLoopLengthMover &

clear_info(self: pyrosetta.rosetta.protocols.moves.Mover) → None

Strings container can be used to return miscellaneous info (as std::string) from a mover, such as notes about the results of apply(). The job distributor (Apr 09 vintage) will check this function to see if your protocol wants to add string info to the Job that ran this mover. One way this can be useful is that later, a JobOutputter may include/append this info to an output file.

clear_info is called by jd2 before calling apply

C++: protocols::moves::Mover::clear_info() –> void

clone(self: pyrosetta.rosetta.protocols.moves.Mover) → pyrosetta.rosetta.protocols.moves.Mover

Return a clone of the Mover object.

C++: protocols::moves::Mover::clone() const –> class std::shared_ptr<class protocols::moves::Mover>

create(self: pyrosetta.rosetta.protocols.moves.Mover) → pyrosetta.rosetta.protocols.moves.Mover

C++: protocols::moves::Mover::create() –> class std::shared_ptr<class protocols::moves::Mover>

fresh_instance(self: pyrosetta.rosetta.protocols.moves.Mover) → pyrosetta.rosetta.protocols.moves.Mover

Generates a new Mover object freshly created with the default ctor.

C++: protocols::moves::Mover::fresh_instance() const –> class std::shared_ptr<class protocols::moves::Mover>

get_additional_output(self: pyrosetta.rosetta.protocols.moves.Mover) → pyrosetta.rosetta.core.pose.Pose

fpd

Mechanism by which a mover may return multiple output poses from a single input pose.

C++: protocols::moves::Mover::get_additional_output() –> class std::shared_ptr<class core::pose::Pose>

get_current_job(self: pyrosetta.rosetta.protocols.moves.Mover) → protocols::jobdist::BasicJob

C++: protocols::moves::Mover::get_current_job() const –> class std::shared_ptr<const class protocols::jobdist::BasicJob>

get_current_tag(self: pyrosetta.rosetta.protocols.moves.Mover) → str
A tag is a unique identifier used to identify structures produced
by this Mover. get_current_tag() returns the tag, and set_current_tag( std::string tag ) sets the tag. This functionality is not intended for use with the 2008 job distributor.

C++: protocols::moves::Mover::get_current_tag() const –> std::string

get_input_pose(self: pyrosetta.rosetta.protocols.moves.Mover) → pyrosetta.rosetta.core.pose.Pose

C++: protocols::moves::Mover::get_input_pose() const –> class std::shared_ptr<const class core::pose::Pose>

get_last_move_status(self: pyrosetta.rosetta.protocols.moves.Mover) → pyrosetta.rosetta.protocols.moves.MoverStatus

returns status after an apply(). The job distributor (august 08 vintage) will check this function to see if your protocol wants to filter its results - if your protocol wants to say “that run was no good, skip it” then use the protected last_move_status(MoverStatus) to change the value that this function will return.

C++: protocols::moves::Mover::get_last_move_status() const –> enum protocols::moves::MoverStatus

get_name(self: pyrosetta.rosetta.protocols.stepwise.monte_carlo.mover.VaryLoopLengthMover) → str

C++: protocols::stepwise::monte_carlo::mover::VaryLoopLengthMover::get_name() const –> std::string

get_native_pose(self: pyrosetta.rosetta.protocols.moves.Mover) → pyrosetta.rosetta.core.pose.Pose

C++: protocols::moves::Mover::get_native_pose() const –> class std::shared_ptr<const class core::pose::Pose>

get_self_ptr(self: pyrosetta.rosetta.protocols.moves.Mover) → pyrosetta.rosetta.protocols.moves.Mover

C++: protocols::moves::Mover::get_self_ptr() –> class std::shared_ptr<class protocols::moves::Mover>

get_self_weak_ptr(self: pyrosetta.rosetta.protocols.moves.Mover) → pyrosetta.rosetta.std.weak_ptr_protocols_moves_Mover_t

C++: protocols::moves::Mover::get_self_weak_ptr() –> class std::weak_ptr<class protocols::moves::Mover>

get_type(self: pyrosetta.rosetta.protocols.moves.Mover) → str

C++: protocols::moves::Mover::get_type() const –> std::string

info(self: pyrosetta.rosetta.protocols.moves.Mover) → pyrosetta.rosetta.std.list_std_string_std_allocator_std_string_t

non-const accessor

C++: protocols::moves::Mover::info() –> class std::list<std::string, class std::allocator<std::string > > &

last_proposal_density_ratio(self: pyrosetta.rosetta.protocols.moves.Mover) → float

C++: protocols::moves::Mover::last_proposal_density_ratio() –> double

name() → str

C++: protocols::moves::Mover::name() –> std::string

register_options() → None

Overload this static method if you access options within the mover.

These options will end up in -help of your application if users of this mover call register_options. Do this recursively! If you use movers within your mover, call their register_options in your register_options() method.

C++: protocols::moves::Mover::register_options() –> void

reinitialize_for_each_job(self: pyrosetta.rosetta.protocols.moves.Mover) → bool
Inform the Job Distributor (August ‘08 vintage) whether this object needs to be freshly regenerated on
each use.

C++: protocols::moves::Mover::reinitialize_for_each_job() const –> bool

reinitialize_for_new_input(self: pyrosetta.rosetta.protocols.moves.Mover) → bool
Inform the Job Distributor (August ‘08 vintage) whether this object needs to be regenerated when the input
pose is about to change, (for example, if the Mover has special code on the first apply() that is only valid for that one input pose).

C++: protocols::moves::Mover::reinitialize_for_new_input() const –> bool

reset_status(self: pyrosetta.rosetta.protocols.moves.Mover) → None

resets status to SUCCESS, meant to be used before an apply(). The job distributor (august 08 vintage) uses this to ensure non-accumulation of status across apply()s.

C++: protocols::moves::Mover::reset_status() –> void

set_current_job(self: pyrosetta.rosetta.protocols.moves.Mover, job: protocols::jobdist::BasicJob) → None

////////////////////////////end Job Distributor interface////////////////////////////////////////

C++: protocols::moves::Mover::set_current_job(class std::shared_ptr<const class protocols::jobdist::BasicJob>) –> void

set_current_tag(self: pyrosetta.rosetta.protocols.moves.Mover, new_tag: str) → None

C++: protocols::moves::Mover::set_current_tag(const class std::basic_string<char> &) –> void

set_input_pose(self: pyrosetta.rosetta.protocols.moves.Mover, pose: pyrosetta.rosetta.core.pose.Pose) → None

setter for poses contained for rms

C++: protocols::moves::Mover::set_input_pose(class std::shared_ptr<const class core::pose::Pose>) –> void

set_native_pose(self: pyrosetta.rosetta.protocols.moves.Mover, pose: pyrosetta.rosetta.core.pose.Pose) → None

setter for native poses contained for rms —- we should get rid of this method? it is widely used, but a bit unsafe

C++: protocols::moves::Mover::set_native_pose(class std::shared_ptr<const class core::pose::Pose>) –> void

set_type(self: pyrosetta.rosetta.protocols.moves.Mover, setting: str) → None

C++: protocols::moves::Mover::set_type(const class std::basic_string<char> &) –> void

show(*args, **kwargs)

Overloaded function.

  1. show(self: pyrosetta.rosetta.protocols.moves.Mover) -> None
  2. show(self: pyrosetta.rosetta.protocols.moves.Mover, output: pyrosetta.rosetta.std.ostream) -> None

Outputs details about the Mover, including current settings.

C++: protocols::moves::Mover::show(class std::basic_ostream<char> &) const –> void

test_move(self: pyrosetta.rosetta.protocols.moves.Mover, pose: pyrosetta.rosetta.core.pose.Pose) → None
: Unit test support function. Apply one move to a given pose.
Allows extra test specific functions to be called before applying

C++: protocols::moves::Mover::test_move(class core::pose::Pose &) –> void

type(*args, **kwargs)

Overloaded function.

  1. type(self: pyrosetta.rosetta.protocols.moves.Mover) -> str

C++: protocols::moves::Mover::type() const –> const std::string &

  1. type(self: pyrosetta.rosetta.protocols.moves.Mover, type_in: str) -> None

C++: protocols::moves::Mover::type(const class std::basic_string<char> &) –> void

pyrosetta.rosetta.protocols.stepwise.monte_carlo.mover.attachment_type_from_string(name: str) → pyrosetta.rosetta.protocols.stepwise.monte_carlo.mover.AttachmentType

C++: protocols::stepwise::monte_carlo::mover::attachment_type_from_string(const class std::basic_string<char> &) –> enum protocols::stepwise::monte_carlo::mover::AttachmentType

pyrosetta.rosetta.protocols.stepwise.monte_carlo.mover.move_type_from_string(name: str) → pyrosetta.rosetta.protocols.stepwise.monte_carlo.mover.MoveType

C++: protocols::stepwise::monte_carlo::mover::move_type_from_string(const class std::basic_string<char> &) –> enum protocols::stepwise::monte_carlo::mover::MoveType

pyrosetta.rosetta.protocols.stepwise.monte_carlo.mover.setup_unified_stepwise_modeler(options: protocols::stepwise::monte_carlo::options::StepWiseMonteCarloOptions, scorefxn: pyrosetta.rosetta.core.scoring.ScoreFunction) → pyrosetta.rosetta.protocols.stepwise.modeler.StepWiseModeler

C++: protocols::stepwise::monte_carlo::mover::setup_unified_stepwise_modeler(class std::shared_ptr<const class protocols::stepwise::monte_carlo::options::StepWiseMonteCarloOptions>, class std::shared_ptr<const class core::scoring::ScoreFunction>) –> class std::shared_ptr<class protocols::stepwise::modeler::StepWiseModeler>

pyrosetta.rosetta.protocols.stepwise.monte_carlo.mover.to_string(*args, **kwargs)

Overloaded function.

  1. to_string(attachment_type: pyrosetta.rosetta.protocols.stepwise.monte_carlo.mover.AttachmentType) -> str

C++: protocols::stepwise::monte_carlo::mover::to_string(const enum protocols::stepwise::monte_carlo::mover::AttachmentType &) –> std::string

  1. to_string(move_type_name: pyrosetta.rosetta.protocols.stepwise.monte_carlo.mover.MoveType) -> str

C++: protocols::stepwise::monte_carlo::mover::to_string(const enum protocols::stepwise::monte_carlo::mover::MoveType &) –> std::string