Rosetta
|
#include <VirtualSugarSampler.hh>
Public Member Functions | |
VirtualSugarSampler (working_parameters::StepWiseWorkingParametersCOP &working_parameters, SugarModeling &sugar_modeling) | |
~VirtualSugarSampler () override | |
void | apply (core::pose::Pose &pose_to_visualize) override |
Main Method. More... | |
void | apply (utility::vector1< core::pose::PoseOP > &pose_list, core::pose::Pose &pose_to_visualize) override |
std::string | get_name () const override |
Each derived class must specify its name. The class name. More... | |
void | set_tag (std::string const &setting) |
void | set_use_phenix_geo (bool const &setting) |
void | set_legacy_mode (bool const &setting) |
void | set_choose_random (bool const &setting) |
void | set_keep_base_fixed (bool const &setting) |
void | set_do_minimize (bool const &setting) |
void | set_do_screens (bool const &setting) |
void | set_integration_test_mode (bool const &setting) |
void | set_virtual_sugar_is_from_prior_step (bool const &setting) |
void | set_scorefxn (core::scoring::ScoreFunctionCOP scorefxn) |
![]() | |
MoverForPoseList () | |
~MoverForPoseList () override | |
virtual void | apply (utility::vector1< core::pose::PoseOP > &pose_list) |
![]() | |
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 MoverOP | clone () const |
Return a clone of the Mover object. 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... | |
virtual MoverOP | fresh_instance () const |
Generates a new Mover object freshly created with the default ctor. 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 |
virtual void | parse_my_tag (TagCOP tag, basic::datacache::DataMap &data) |
Called by MoverFactory when constructing new Movers. Takes care of the specific mover's parsing. More... | |
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... | |
Private Attributes | |
working_parameters::StepWiseWorkingParametersCOP | working_parameters_ |
SugarModeling & | sugar_modeling_ |
std::string | tag_ |
bool | use_phenix_geo_ |
bool | keep_base_fixed_ |
bool | choose_random_ |
bool | do_minimize_ |
bool | do_screens_ |
bool | integration_test_mode_ |
bool | virtual_sugar_is_from_prior_step_ |
bool | legacy_mode_ |
bool const | do_chain_closure_ |
bool const | first_minimize_with_fixed_base_ |
core::Size const | max_tries_for_random_sugar_setup_ |
bool | sugar_setup_success_ |
core::scoring::ScoreFunctionCOP | scorefxn_ |
checker::RNA_VDW_BinCheckerOP | VDW_bin_checker_ |
utility::vector1< core::Size > | distal_partition_res_ |
utility::vector1< core::Size > | already_virtualized_res_list_ |
bool | moving_phosphate_virtualized_ |
core::pose::PoseOP | pose_with_original_terminal_phosphates_ |
core::scoring::constraints::ConstraintSetOP | original_constraint_set_ |
Additional Inherited Members | |
![]() | |
typedef utility::tag::TagCOP | TagCOP |
typedef core::pose::Pose | Pose |
typedef core::pose::PoseCOP | PoseCOP |
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. 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... | |
protocols::stepwise::modeler::rna::sugar::VirtualSugarSampler::VirtualSugarSampler | ( | working_parameters::StepWiseWorkingParametersCOP & | working_parameters, |
SugarModeling & | sugar_modeling | ||
) |
|
overridedefault |
|
overridevirtual |
Main Method.
Implements protocols::moves::MoverForPoseList.
References choose_random_, max_tries_for_random_sugar_setup_, protocols::stepwise::modeler::rna::sugar::SugarModeling::moving_res, protocols::stepwise::modeler::rna::sugar::SugarModeling::pose_list, protocols::stepwise::modeler::rna::sugar::SugarModeling::reference_res, sugar_modeling_, sugar_setup_success_, protocols::TR(), and viewer_pose.
Referenced by protocols::stepwise::modeler::rna::sugar::VirtualSugarSamplerFromStringList::apply(), and protocols::stepwise::modeler::rna::sugar::VirtualSugarJustInTimeInstantiator::do_sugar_sampling().
|
overridevirtual |
Reimplemented from protocols::moves::MoverForPoseList.
References protocols::stepwise::modeler::rna::sugar::SugarModeling::bulge_res, protocols::stepwise::modeler::rna::sugar::SugarModeling::check_compatibility(), do_chain_closure_, do_chain_closure_modeler(), do_screens_, original_constraint_set_, protocols::stepwise::modeler::rna::output_title_text(), reinstantiate_distal_partition(), reinstate_original_constraints(), setup_sugar_conformations(), sugar_modeling_, tag_, core::pose::tag_into_pose(), protocols::TR(), viewer_pose, virtual_sugar_is_from_prior_step_, virtualize_distal_partition(), and working_parameters_.
|
private |
References bulge_chain_closure_complete(), bulge_chain_closure_legacy(), bulge_chain_minimize_legacy(), legacy_mode_, and viewer_pose.
Referenced by do_chain_closure_modeler().
|
private |
|
private |
References protocols::stepwise::modeler::rna::add_harmonic_chain_break_constraint(), core::chemical::rna::ANY_CHI, core::chemical::rna::ANY_PUCKER, core::pose::rna::assign_pucker(), protocols::stepwise::modeler::rna::sugar::SugarModeling::bulge_res, protocols::stepwise::modeler::rna::sugar::SugarModeling::bulge_suite, protocols::stepwise::modeler::rna::StepWiseRNA_CountStruct::chain_closable_geometry_count, protocols::stepwise::modeler::rna::StepWiseRNA_CountStruct::fast_full_atom_VDW_repulsion_screen, fast_full_atom_VDW_repulsion_screen(), protocols::stepwise::modeler::rna::sugar::SugarModeling::five_prime_chain_break, protocols::stepwise::modeler::rna::StepWiseRNA_CountStruct::good_angle_count, protocols::stepwise::modeler::rna::StepWiseRNA_CountStruct::good_bin_rep_count, protocols::stepwise::modeler::rna::StepWiseRNA_CountStruct::good_distance_count, protocols::stepwise::modeler::rna::StepWiseRNA_CountStruct::good_rep_rotamer_count, integration_test_mode_, protocols::stepwise::modeler::rna::sugar::SugarModeling::is_prepend, legacy_mode_, protocols::stepwise::modeler::rna::sugar::SugarModeling::moving_res, core::chemical::rna::NO_CHI, protocols::stepwise::legacy::modeler::protein::output_pose_list(), protocols::stepwise::modeler::rna::output_title_text(), protocols::stepwise::modeler::rna::StepWiseRNA_CountStruct::rmsd_count, sugar_modeling_, protocols::stepwise::modeler::rna::StepWiseRNA_CountStruct::tot_rotamer_count, protocols::TR(), use_phenix_geo_, VDW_bin_checker_, and viewer_pose.
Referenced by bulge_chain_closure().
|
private |
References core::scoring::angle_constraint, core::scoring::atom_pair_constraint, core::id::BB, protocols::stepwise::modeler::rna::sugar::SugarModeling::bulge_res, core::chemical::rna::CHI, core::scoring::fa_rep, core::scoring::linear_chainbreak, core::optimization::MinimizerOptions::nblist_auto_update(), protocols::stepwise::legacy::modeler::protein::output_pose_list(), protocols::stepwise::modeler::rna::output_title_text(), core::scoring::rna_sugar_close, core::optimization::AtomTreeMinimizer::run(), core::kinematics::MoveMap::set(), core::kinematics::MoveMap::set_bb(), core::kinematics::MoveMap::set_chi(), sugar_modeling_, protocols::TR(), and viewer_pose.
Referenced by bulge_chain_closure().
|
private |
References bulge_chain_closure(), initialize_pose_variants_for_chain_closure(), restore_pose_variants_after_chain_closure(), and viewer_pose.
Referenced by apply().
|
private |
|
overridevirtual |
Each derived class must specify its name. The class name.
Implements protocols::moves::Mover.
|
private |
|
private |
References core::pose::add_variant_type_to_pose_residue(), protocols::stepwise::modeler::rna::sugar::SugarModeling::bulge_res, protocols::stepwise::modeler::rna::sugar::SugarModeling::five_prime_chain_break, legacy_mode_, reinstantiate_backbone_at_moving_res(), core::pose::rna::remove_virtual_rna_residue_variant_type(), protocols::stepwise::modeler::rna::setup_chain_break_variants(), sugar_modeling_, core::chemical::VIRTUAL_PHOSPHATE, and core::chemical::VIRTUAL_RNA_RESIDUE.
Referenced by do_chain_closure_modeler().
|
private |
References core::chemical::rna::CHI, core::kinematics::FoldTree::downstream_jump_residue(), first_minimize_with_fixed_base_, core::pose::Pose::fold_tree(), get_sugar_setup_scorefxns(), keep_base_fixed_, core::optimization::MinimizerOptions::min_type(), core::optimization::MinimizerOptions::minimize_tolerance(), protocols::stepwise::modeler::rna::minimize_with_constraints(), protocols::stepwise::modeler::rna::sugar::SugarModeling::moving_res, core::optimization::MinimizerOptions::nblist_auto_update(), core::optimization::AtomTreeMinimizer::run(), core::kinematics::MoveMap::set(), core::kinematics::MoveMap::set_bb(), core::kinematics::MoveMap::set_chi(), core::kinematics::MoveMap::set_jump(), sugar_modeling_, protocols::TR(), and core::kinematics::FoldTree::upstream_jump_residue().
Referenced by setup_sugar_conformations().
|
private |
|
private |
References already_virtualized_res_list_, protocols::stepwise::modeler::rna::phosphate::copy_over_phosphate_variants(), distal_partition_res_, moving_phosphate_virtualized_, protocols::stepwise::modeler::rna::sugar::SugarModeling::moving_res, pose_with_original_terminal_phosphates_, core::pose::remove_variant_type_from_pose_residue(), sugar_modeling_, core::chemical::VIRTUAL_PHOSPHATE, and core::chemical::VIRTUAL_RNA_RESIDUE.
|
private |
References virtual_sugar_is_from_prior_step_.
Referenced by apply().
|
private |
References original_constraint_set_.
Referenced by apply().
|
private |
References core::pose::rna::apply_virtual_rna_residue_variant_type(), protocols::stepwise::modeler::rna::sugar::SugarModeling::bulge_res, protocols::stepwise::modeler::rna::sugar::SugarModeling::five_prime_chain_break, protocols::stepwise::modeler::rna::get_modeler_scorefxn(), protocols::stepwise::modeler::rna::remove_chain_break_variants(), core::pose::remove_variant_type_from_pose_residue(), scorefxn_, sugar_modeling_, and core::chemical::VIRTUAL_PHOSPHATE.
Referenced by do_chain_closure_modeler().
|
inline |
|
inline |
References do_minimize_.
Referenced by protocols::stepwise::modeler::rna::sugar::VirtualSugarJustInTimeInstantiator::do_sugar_sampling().
|
inline |
References do_screens_.
Referenced by protocols::stepwise::modeler::rna::sugar::VirtualSugarJustInTimeInstantiator::do_sugar_sampling().
|
inline |
|
inline |
|
inline |
void protocols::stepwise::modeler::rna::sugar::VirtualSugarSampler::set_scorefxn | ( | core::scoring::ScoreFunctionCOP | scorefxn | ) |
|
inline |
|
inline |
|
inline |
|
private |
References protocols::stepwise::modeler::rna::add_fade_chain_break_constraint_across_gap(), protocols::stepwise::modeler::rna::add_harmonic_chain_break_constraint(), choose_random_, core::pose::Pose::clone(), do_chain_closure_, do_minimize_, do_screens_, core::pose::full_model_info::figure_out_chain_numbers_from_full_model_info(), protocols::stepwise::modeler::rna::sugar::SugarModeling::five_prime_chain_break, core::pose::full_model_info::get_res_list_from_full_model_info(), protocols::stepwise::modeler::rna::sugar::SugarModeling::is_prepend, legacy_mode_, max_tries_for_random_sugar_setup_, minimize_sugar(), protocols::stepwise::modeler::rna::sugar::SugarModeling::moving_res, protocols::stepwise::modeler::rna::sugar::SugarModeling::moving_res_base_state, protocols::stepwise::modeler::rna::sugar::SugarModeling::moving_res_pucker_state, protocols::stepwise::modeler::rna::output_title_text(), protocols::stepwise::modeler::rna::sugar::SugarModeling::reference_res, core::pose::remove_variant_type_from_pose_residue(), scorefxn_, protocols::stepwise::modeler::rna::setup_chain_break_variants(), sugar_modeling_, sugar_setup_success_, core::pose::tag_from_pose(), core::pose::tag_into_pose(), protocols::TR(), use_phenix_geo_, core::chemical::VIRTUAL_RIBOSE, and working_parameters_.
Referenced by apply().
|
private |
References protocols::stepwise::modeler::rna::sugar::SugarModeling::bulge_res, core::chemical::rna::get_rna_base_centroid(), core::chemical::rna::get_rna_base_coordinate_system(), protocols::stepwise::modeler::rna::sugar::SugarModeling::is_prepend, core::kinematics::Stub::M, protocols::stepwise::modeler::rna::sugar::SugarModeling::moving_res, protocols::stepwise::modeler::rna::sugar::SugarModeling::reference_res, core::pose::Pose::residue(), sugar_modeling_, core::kinematics::Stub::v, and VDW_bin_checker_.
|
private |
References core::pose::add_variant_type_to_pose_residue(), already_virtualized_res_list_, core::pose::Pose::clone(), distal_partition_res_, core::pose::Pose::fold_tree(), core::conformation::Residue::has_variant_type(), core::kinematics::FoldTree::jump_nr(), moving_phosphate_virtualized_, protocols::stepwise::modeler::rna::sugar::SugarModeling::moving_res, core::kinematics::FoldTree::partition_by_jump(), pose_with_original_terminal_phosphates_, protocols::stepwise::modeler::rna::sugar::SugarModeling::reference_res, core::pose::rna::remove_bracketed(), protocols::stepwise::modeler::rna::phosphate::remove_terminal_phosphates(), core::pose::Pose::residue(), sugar_modeling_, viewer_pose, core::chemical::VIRTUAL_PHOSPHATE, core::chemical::VIRTUAL_RNA_RESIDUE, and working_parameters_.
Referenced by apply().
|
private |
Referenced by reinstantiate_distal_partition(), and virtualize_distal_partition().
|
private |
Referenced by apply(), set_choose_random(), and setup_sugar_conformations().
|
private |
Referenced by reinstantiate_distal_partition(), and virtualize_distal_partition().
|
private |
Referenced by apply(), and setup_sugar_conformations().
|
private |
Referenced by set_do_minimize(), and setup_sugar_conformations().
|
private |
Referenced by apply(), set_do_screens(), and setup_sugar_conformations().
|
private |
Referenced by minimize_sugar().
|
private |
Referenced by bulge_chain_closure_complete(), bulge_chain_closure_legacy(), and set_integration_test_mode().
|
private |
Referenced by minimize_sugar(), and set_keep_base_fixed().
|
private |
|
private |
Referenced by apply(), and setup_sugar_conformations().
|
private |
Referenced by reinstantiate_distal_partition(), and virtualize_distal_partition().
|
private |
Referenced by apply(), and reinstate_original_constraints().
|
private |
Referenced by reinstantiate_distal_partition(), and virtualize_distal_partition().
|
private |
|
private |
Referenced by apply(), bulge_chain_closure_complete(), bulge_chain_closure_legacy(), bulge_chain_minimize_legacy(), initialize_pose_variants_for_chain_closure(), minimize_sugar(), reinstantiate_distal_partition(), restore_pose_variants_after_chain_closure(), setup_sugar_conformations(), setup_VDW_bin_checker(), and virtualize_distal_partition().
|
private |
Referenced by apply(), and setup_sugar_conformations().
|
private |
|
private |
|
private |
Referenced by bulge_chain_closure_legacy(), and setup_VDW_bin_checker().
|
private |
Referenced by apply(), reinstantiate_distal_partition(), and set_virtual_sugar_is_from_prior_step().
|
private |
Referenced by apply(), setup_sugar_conformations(), and virtualize_distal_partition().