Rosetta 3.5
|
#include <SingleFragmentMover.hh>
Public Member Functions | |
SingleFragmentMover () | |
No-argument constructor required by RosettaScripts. The caller is responsible for initializing the instance. More... | |
SingleFragmentMover (const FragSetOP &fragments, const MoveMapOP &movable) | |
Creates a new SingleFragmentMover that selects uniformly from the available fragments at the selected insertion position. More... | |
SingleFragmentMover (const FragSetOP &fragments, const MoveMapOP &movable, const PolicyOP &policy) | |
Creates a new SingleFragmentMover that selects fragments at the selected insertion position using the given policy. More... | |
~SingleFragmentMover () | |
void | apply (Pose &pose) |
Performs a single fragment insertion on <pose>, drawn from the set of fragments specified in the constructor. Respects the underlying kinematics of the system, as determined by the Pose's FoldTree and the user-specified MoveMap. Fragment insertions will only occur in allowable regions of the pose. No moves will span jumps in the FoldTree. More... | |
std::string | get_name () const |
Returns the name of this mover. More... | |
virtual MoverOP | clone () const |
Creates a new instance using the copy constructor. More... | |
virtual MoverOP | fresh_instance () const |
Creates a new instance using the default constructor. More... | |
void | parse_my_tag (const utility::tag::TagPtr tag, protocols::moves::DataMap &data, const protocols::filters::Filters_map &filters, const protocols::moves::Movers_map &movers, const Pose &pose) |
Mover-specific parsing required by RosettaScripts. More... | |
void | parse_def (utility::lua::LuaObject const &def, utility::lua::LuaObject const &score_fxns, utility::lua::LuaObject const &tasks, protocols::moves::MoverCacheSP cache) |
Mover-specific parsing required by ElScripts. More... | |
bool | valid () const |
Returns true if this instance is in a usable state, false otherwise. More... | |
![]() | |
Mover () | |
virtual | ~Mover () |
virtual MoverSP | create () |
virtual void | apply (core::io::serialization::PipeMap &pmap) |
virtual void | parse_state (SerializableState const &state) |
virtual void | save_state (SerializableState &state) |
Mover (std::string const &type_name) | |
sets the type for a mover; name_ has been removed (2010/05/14) More... | |
Mover (Mover const &other) | |
Mover & | operator= (Mover const &other) |
assignment operator More... | |
virtual core::Real | last_proposal_density_ratio () |
std::string const & | type () const |
std::string | get_current_tag () const |
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. More... | |
void | set_current_tag (std::string const &new_tag) |
virtual void | set_input_pose (PoseCOP pose) |
setter for poses contained for rms More... | |
virtual void | set_native_pose (PoseCOP pose) |
setter for native poses contained for rms -— we should get rid of this method? it is widely used, but a bit unsafe More... | |
PoseCOP | get_input_pose () const |
PoseCOP | get_native_pose () const |
virtual void | test_move (Pose &pose) |
: Unit test support function. Apply one move to a given pose. Allows extra test specific functions to be called before applying More... | |
void | type (const std::string &type_in) |
std::string | get_type () const |
MoverStatus | get_last_move_status () const |
end parser interface, start Job Distributor interface///////////// More... | |
void | reset_status () |
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. More... | |
virtual core::pose::PoseOP | get_additional_output () |
Mechanism by which a mover may return multiple output poses from a single input pose. More... | |
virtual void | clear_info () |
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. More... | |
virtual Strings & | info () |
non-const accessor More... | |
virtual Strings const & | info () const |
const accessor More... | |
virtual bool | reinitialize_for_each_job () const |
this function informs the job distributor (august 08 vintage) whether this object needs to be freshly regenerated on each use. More... | |
virtual bool | reinitialize_for_new_input () const |
this function informs 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). More... | |
void | set_current_job (protocols::jobdist::BasicJobCOP job) |
jobdist::BasicJobCOP | get_current_job () const |
Private Types | |
typedef core::Real | Real |
typedef core::Size | Size |
typedef core::fragment::FragSetOP | FragSetOP |
typedef core::fragment::Frame | Frame |
typedef core::kinematics::FoldTree | FoldTree |
typedef core::kinematics::FoldTreeOP | FoldTreeOP |
typedef core::kinematics::MoveMapOP | MoveMapOP |
typedef core::pose::Pose | Pose |
typedef protocols::moves::Mover | Mover |
typedef protocols::moves::MoverOP | MoverOP |
typedef boost::unordered_map < Size, Frame > | FrameMap |
typedef utility::vector1< Chunk > | Chunks |
Private Member Functions | |
void | initialize (const FragSetOP &fragments, const MoveMapOP &movable, const PolicyOP &policy) |
void | initialize_library () |
Creates a position-indexable list of Frames. More... | |
void | initialize_chunks (const FoldTree &tree) |
Creates a set of chunks by examining the stored MoveMap and FragSet in conjunction with <tree> More... | |
const Chunk * | random_chunk () const |
Returns a randomly chosen chunk with uniform probability. More... | |
bool | to_centroid (Pose *pose) const |
If <pose> is fullatom, converts it to centroid and returns true. Otherwise, takes no action and returns false. More... | |
Private Attributes | |
FragSetOP | fragments_ |
The set of fragments to apply to the pose. More... | |
MoveMapOP | movable_ |
Defines restrictions on which degrees of freedom in the system can be modified. More... | |
PolicyOP | policy_ |
Selects the fragment to be inserted at <insertion_pos> given knowledge of the fragment library and the current state of the pose. More... | |
FoldTreeOP | previous_tree_ |
FoldTree used to initialize <chunks_> in a previous call to apply() More... | |
FrameMap | library_ |
Provides index-based access to the data contained in the FragSet. More... | |
Chunks | chunks_ |
Regions of sequence on which to perform fragment insertion. More... | |
utility::vector1< Real > | probs_ |
Probability of selecting chunk c_i. Proportional to chunk length. More... | |
Additional Inherited Members | |
![]() | |
typedef utility::tag::TagPtr | TagPtr |
typedef core::pose::Pose | Pose |
typedef core::pose::PoseCOP | PoseCOP |
typedef protocols::filters::Filters_map | Filters_map |
typedef std::list< std::string > | Strings |
![]() | |
static std::string | name () |
static void | register_options () |
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. More... | |
![]() | |
void | set_last_move_status (MoverStatus status) |
nonvirtual setter for MoverStatus last_status_. Protected means that only the mover itself will be able to change its own status. The job distributor (august 08 vintage) is aware of status set with this function and will do what the MoverStatus says. More... | |
|
private |
|
private |
|
private |
|
private |
|
private |
|
private |
protocols::nonlocal::SingleFragmentMover::SingleFragmentMover | ( | ) |
No-argument constructor required by RosettaScripts. The caller is responsible for initializing the instance.
Referenced by clone(), and fresh_instance().
protocols::nonlocal::SingleFragmentMover::SingleFragmentMover | ( | const FragSetOP & | fragments, |
const MoveMapOP & | movable | ||
) |
Creates a new SingleFragmentMover that selects uniformly from the available fragments at the selected insertion position.
References protocols::nonlocal::PolicyFactory::get_policy(), and initialize().
protocols::nonlocal::SingleFragmentMover::SingleFragmentMover | ( | const FragSetOP & | fragments, |
const MoveMapOP & | movable, | ||
const PolicyOP & | policy | ||
) |
Creates a new SingleFragmentMover that selects fragments at the selected insertion position using the given policy.
References initialize().
|
inline |
|
virtual |
Performs a single fragment insertion on <pose>, drawn from the set of fragments specified in the constructor. Respects the underlying kinematics of the system, as determined by the Pose's FoldTree and the user-specified MoveMap. Fragment insertions will only occur in allowable regions of the pose. No moves will span jumps in the FoldTree.
Assumptions:
Implements protocols::moves::Mover.
References core::fragment::Frame::apply(), core::kinematics::FoldTree::check_fold_tree(), protocols::nonlocal::Chunk::choose(), chunks_, core::pose::Pose::fold_tree(), initialize_chunks(), library_, movable_, policy_, previous_tree_, probs_, random_chunk(), to_centroid(), core::pose::Pose::total_residue(), and valid().
|
virtual |
Creates a new instance using the copy constructor.
Reimplemented from protocols::moves::Mover.
References SingleFragmentMover().
|
virtual |
Creates a new instance using the default constructor.
Reimplemented from protocols::moves::Mover.
References SingleFragmentMover().
|
virtual |
Returns the name of this mover.
Implements protocols::moves::Mover.
|
private |
References fragments_, initialize_library(), movable_, and policy_.
Referenced by parse_def(), parse_my_tag(), and SingleFragmentMover().
|
private |
Creates a set of chunks by examining the stored MoveMap and FragSet in conjunction with <tree>
References chunks_, fragments_, core::kinematics::FoldTree::is_cutpoint(), protocols::nonlocal::Chunk::is_movable(), movable_, protocols::forge::build::SegmentInsertConnectionScheme::N, and probs_.
Referenced by apply().
|
private |
Creates a position-indexable list of Frames.
References fragments_, and library_.
Referenced by initialize().
|
virtual |
Mover-specific parsing required by ElScripts.
Reimplemented from protocols::moves::Mover.
References protocols::nonlocal::PolicyFactory::get_policy(), initialize(), and protocols::elscripts::parse_movemapdef().
|
virtual |
Mover-specific parsing required by RosettaScripts.
Reimplemented from protocols::moves::Mover.
References protocols::nonlocal::PolicyFactory::get_policy(), initialize(), and protocols::rosetta_scripts::parse_movemap().
|
private |
If <pose> is fullatom, converts it to centroid and returns true. Otherwise, takes no action and returns false.
References core::pose::Pose::is_fullatom(), and core::util::switch_to_residue_type_set().
Referenced by apply().
bool protocols::nonlocal::SingleFragmentMover::valid | ( | ) | const |
Returns true if this instance is in a usable state, false otherwise.
References fragments_, movable_, and policy_.
Referenced by apply().
|
private |
Regions of sequence on which to perform fragment insertion.
Referenced by apply(), initialize_chunks(), and random_chunk().
|
private |
The set of fragments to apply to the pose.
Referenced by initialize(), initialize_chunks(), initialize_library(), and valid().
|
private |
Provides index-based access to the data contained in the FragSet.
Referenced by apply(), and initialize_library().
|
private |
Defines restrictions on which degrees of freedom in the system can be modified.
Referenced by apply(), initialize(), initialize_chunks(), and valid().
|
private |
Selects the fragment to be inserted at <insertion_pos> given knowledge of the fragment library and the current state of the pose.
Referenced by apply(), initialize(), and valid().
|
private |
|
private |
Probability of selecting chunk c_i. Proportional to chunk length.
Referenced by apply(), initialize_chunks(), and random_chunk().