Rosetta
|
#include <AtomCoordinateCstMover.hh>
Public Types | |
typedef moves::Mover | parent |
![]() | |
typedef utility::tag::TagCOP | TagCOP |
typedef core::pose::Pose | Pose |
typedef core::pose::PoseCOP | PoseCOP |
typedef std::list< std::string > | Strings |
Public Member Functions | |
AtomCoordinateCstMover () | |
AtomCoordinateCstMover (AtomCoordinateCstMover const &) | |
~AtomCoordinateCstMover () override | |
void | apply (core::pose::Pose &pose) override |
Main Method. More... | |
std::string | get_name () const override |
Each derived class must specify its name. The class name. More... | |
protocols::moves::MoverOP | fresh_instance () const override |
Generates a new Mover object freshly created with the default ctor. More... | |
protocols::moves::MoverOP | clone () const override |
Return a clone of the Mover object. More... | |
void | parse_my_tag (utility::tag::TagCOP tag, basic::datacache::DataMap &data) override |
Called by MoverFactory when constructing new Movers. Takes care of the specific mover's parsing. More... | |
virtual void | set_refstruct (core::pose::PoseCOP ref) |
void | cst_sd (core::Real sd) |
core::Real | cst_sd () const |
void | bounded (bool bound) |
bool | bounded () const |
void | cst_width (core::Real width) |
core::Real | cst_width () const |
void | cst_sidechain (bool sidechains) |
bool | cst_sidechain () const |
void | ambiguous_hnq (bool flip_hnq) |
bool | ambiguous_hnq () const |
void | func_groups (bool b) |
bool | func_groups () const |
void | set_loop_segments (protocols::loops::LoopsCOP loops) |
void | set_task_segments (core::pack::task::TaskFactoryCOP taskfactory) |
![]() | |
Mover () | |
virtual MoverOP | create () |
MoverCOP | get_self_ptr () const |
MoverOP | get_self_ptr () |
MoverCAP | get_self_weak_ptr () const |
MoverAP | get_self_weak_ptr () |
Mover (std::string const &type_name) | |
sets the type for a mover; name_ has been removed (2010/05/14) More... | |
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... | |
virtual bool | reinitialize_for_each_job () const |
Inform 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 |
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). More... | |
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... | |
void | set_type (std::string const &setting) |
Set the 'type' string. More... | |
std::string | get_type () const |
void | type (const std::string &type_in) |
Set the 'type' string. More... | |
std::string const & | type () const |
Get the set 'type' string. More... | |
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 |
void | set_current_job (protocols::jobdist::BasicJobCOP job) |
jobdist::BasicJobCOP | get_current_job () const |
virtual void | set_current_tag (std::string const &new_tag) |
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... | |
virtual void | show (std::ostream &output=std::cout) const |
Outputs details about the Mover, including current settings. More... | |
virtual core::Real | last_proposal_density_ratio () |
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 void | provide_citation_info (basic::citation_manager::CitationCollectionList &) const |
Provide citations to the passed CitationCollectionList Subclasses should add the info for themselves and any other classes they use. More... | |
Static Public Member Functions | |
static std::string | mover_name () |
static void | provide_xml_schema (utility::tag::XMLSchemaDefinition &xsd) |
![]() | |
static std::string | name () |
static void | register_options () |
Overload this static method if you access options within the mover. More... | |
Private Member Functions | |
core::select::residue_selector::ResidueSubset | compute_residue_subset (core::pose::Pose const &pose) const |
core::pose::PoseOP | get_constraint_target_pose (core::pose::Pose const &pose) const |
core::id::SequenceMapping | generate_seqmap (core::pose::Pose const &pose, core::pose::Pose const &constraint_target_pose) const |
core::scoring::constraints::ConstraintCOPs | generate_constraints (core::pose::Pose const &pose) |
core::scoring::constraints::ConstraintCOPs | set_constraints_on_func_groups (core::pose::Pose const &pose) |
Private Attributes | |
core::pose::PoseCOP | refpose_ |
If set, the pose to make the constraints to. More... | |
core::Real | cst_sd_ |
The strenght (standard deviation) of the constraints. More... | |
bool | bounded_ |
Use bounded constraints instead of harmonic. More... | |
core::Real | cst_width_ |
The width for bounded constraints. More... | |
bool | cst_sidechain_ |
Also constrain sidechains? More... | |
bool | amb_hnq_ |
When making sidechain constraints, should we allow for flipping HNQ residue sidechains? More... | |
protocols::loops::LoopsCOP | loop_segments_ |
A loop definition of constrained segments. More... | |
core::pack::task::TaskFactoryCOP | task_segments_ |
A task definition of constrained segments. More... | |
bool | func_groups_ |
If set to true then coordinate constraints are applied only to the functional groups of the side_chain. More... | |
Additional Inherited Members | |
![]() | |
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... | |
protocols::relax::AtomCoordinateCstMover::AtomCoordinateCstMover | ( | ) |
|
default |
|
overridedefault |
|
inline |
References amb_hnq_.
Referenced by parse_my_tag().
|
inline |
References amb_hnq_.
Referenced by protocols::relax::RelaxProtocolBase::set_up_constraints().
|
overridevirtual |
Main Method.
Implements protocols::moves::Mover.
References core::pose::Pose::add_constraints(), and generate_constraints().
Referenced by protocols::indel::IndelOptimizationMover::apply(), protocols::residue_optimization::MetapatchEnumeration::final_sampling(), protocols::residue_optimization::MetapatchEnumeration::initial_sampling(), protocols::mpi_refinement::Serial_Refine::load_structures_from_cmdline_into_library(), protocols::mpi_refinement::MPI_Refinement::load_structures_from_cmdline_into_library(), protocols::mpi_refinement::WorkUnit_NormalMode::run(), protocols::relax::RelaxProtocolBase::set_up_constraints(), and protocols::mpi_refinement::StructAvrgMover::weighted_average().
|
inline |
References bounded_.
Referenced by parse_my_tag().
|
inline |
References bounded_.
Referenced by protocols::relax::RelaxProtocolBase::set_up_constraints().
|
overridevirtual |
Return a clone of the Mover object.
clone is meant to return an OP'ed deep copy of this object. This really should be a pure virtual in the base class, but adding pure virtuals to Mover would massively disrupt the code. This default implementation crashes at runtime instead of compiletime if you try to call it. If this code is causing you problems, your Mover needs to override this function.
Reimplemented from protocols::moves::Mover.
Referenced by protocols::mpi_refinement::StructAvrgMover::weighted_average().
|
private |
References core::conformation::Residue::aa(), core::chemical::aa_vrt, loop_segments_, core::pose::Pose::residue(), core::pose::Pose::size(), and task_segments_.
Referenced by generate_constraints(), and set_constraints_on_func_groups().
|
inline |
References cst_sd_.
Referenced by parse_my_tag().
|
inline |
References cst_sd_.
Referenced by protocols::mpi_refinement::Serial_Refine::load_structures_from_cmdline_into_library(), protocols::mpi_refinement::MPI_Refinement::load_structures_from_cmdline_into_library(), protocols::mpi_refinement::WorkUnit_NormalMode::run(), protocols::relax::RelaxProtocolBase::set_up_constraints(), and protocols::mpi_refinement::StructAvrgMover::weighted_average().
|
inline |
References cst_sidechain_.
Referenced by parse_my_tag().
|
inline |
References cst_sidechain_.
Referenced by protocols::relax::RelaxProtocolBase::set_up_constraints().
|
inline |
References cst_width_.
Referenced by parse_my_tag().
|
inline |
References cst_width_.
Referenced by protocols::relax::RelaxProtocolBase::set_up_constraints().
|
overridevirtual |
Generates a new Mover object freshly created with the default ctor.
fresh_instance is meant to return a new object of this class, created with the default constructor. This really should be a pure virtual in the base class, but adding pure virtuals to Mover would massively disrupt the code. This default implementation crashes at runtime instead of compiletime if you try to call it. If this code is causing you problems, your Mover needs to override this function. This is used by the August 08 job distributor.
Reimplemented from protocols::moves::Mover.
|
inline |
References func_groups_.
Referenced by parse_my_tag().
|
inline |
References protocols::match::upstream::b, and func_groups_.
|
private |
References core::conformation::Residue::aa(), core::chemical::aa_asn, core::chemical::aa_gln, core::chemical::aa_his, core::chemical::aa_vrt, amb_hnq_, core::conformation::Residue::atom_index(), core::conformation::Residue::atom_name(), bounded_, core::sequence::calpha_superimpose_with_mapping(), compute_residue_subset(), cst_sd_, cst_sidechain_, cst_width_, core::pose::Pose::fold_tree(), func_groups_, protocols::constraint_generator::generate_seqmap_from_poses(), get_constraint_target_pose(), core::conformation::Residue::has(), core::conformation::Residue::last_backbone_atom(), core::conformation::Residue::name(), core::conformation::Residue::nheavyatoms(), refpose_, core::pose::Pose::residue(), core::id::SequenceMapping::reverse(), core::kinematics::FoldTree::root(), set_constraints_on_func_groups(), core::pose::Pose::size(), protocols::relax::TR(), and core::conformation::Residue::xyz().
Referenced by apply().
|
private |
|
private |
References core::pose::Pose::clone(), and refpose_.
Referenced by generate_constraints(), and set_constraints_on_func_groups().
|
overridevirtual |
Each derived class must specify its name. The class name.
Implements protocols::moves::Mover.
References protocols::relax::AtomCoordinateCstMoverCreator::mover_name().
|
static |
Referenced by protocols::relax::AtomCoordinateCstMoverCreator::keyname(), and provide_xml_schema().
|
overridevirtual |
Called by MoverFactory when constructing new Movers. Takes care of the specific mover's parsing.
Some movers need not be parsed, so we shouldn't force people to reimplement this method. However, we should be chatty about the fact that someone is using a RosettaScripts interface to a mover which didn't define parse_my_tag()
Reimplemented from protocols::moves::Mover.
References ambiguous_hnq(), bounded(), core::io::pdb::build_pose_from_pdb_as_is(), cst_sd(), cst_sidechain(), cst_width(), func_groups(), core::pack::task::parse_task_operations(), refpose_, and set_task_segments().
|
static |
|
private |
References core::conformation::Residue::aa(), core::chemical::aa_vrt, protocols::relax::add_coordinate_constraint_func_atoms(), core::conformation::Residue::atom_index(), bounded_, compute_residue_subset(), cst_sd_, core::sequence::end, protocols::rosetta_scripts::find_nearest_res(), get_constraint_target_pose(), core::conformation::Residue::name3(), core::pose::Pose::residue(), core::pose::Pose::size(), and protocols::relax::TR().
Referenced by generate_constraints().
void protocols::relax::AtomCoordinateCstMover::set_loop_segments | ( | protocols::loops::LoopsCOP | loops | ) |
References loop_segments_.
Referenced by protocols::relax::RelaxProtocolBase::set_up_constraints().
|
virtual |
References core::scoring::ref, and refpose_.
Referenced by protocols::indel::IndelOptimizationMover::apply(), and protocols::relax::RelaxProtocolBase::set_up_constraints().
void protocols::relax::AtomCoordinateCstMover::set_task_segments | ( | core::pack::task::TaskFactoryCOP | taskfactory | ) |
References task_segments_.
Referenced by parse_my_tag().
|
private |
When making sidechain constraints, should we allow for flipping HNQ residue sidechains?
Referenced by ambiguous_hnq(), and generate_constraints().
|
private |
Use bounded constraints instead of harmonic.
Referenced by bounded(), generate_constraints(), and set_constraints_on_func_groups().
|
private |
The strenght (standard deviation) of the constraints.
Referenced by cst_sd(), generate_constraints(), and set_constraints_on_func_groups().
|
private |
Also constrain sidechains?
Referenced by cst_sidechain(), and generate_constraints().
|
private |
The width for bounded constraints.
Referenced by cst_width(), and generate_constraints().
|
private |
If set to true then coordinate constraints are applied only to the functional groups of the side_chain.
Referenced by func_groups(), and generate_constraints().
|
private |
A loop definition of constrained segments.
Referenced by compute_residue_subset(), and set_loop_segments().
|
private |
If set, the pose to make the constraints to.
Referenced by generate_constraints(), get_constraint_target_pose(), parse_my_tag(), and set_refstruct().
|
private |
A task definition of constrained segments.
Referenced by compute_residue_subset(), and set_task_segments().