Rosetta
|
#include <StepWiseModeler.hh>
Public Member Functions | |
StepWiseModeler (core::Size const moving_res, core::scoring::ScoreFunctionCOP scorefxn) | |
StepWiseModeler (core::scoring::ScoreFunctionCOP scorefxn) | |
~StepWiseModeler () override | |
StepWiseModeler (StepWiseModeler const &src) | |
virtual StepWiseModelerOP | clone_modeler () const |
StepWiseModeler & | operator= (StepWiseModeler const &src) |
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... | |
void | set_moving_res_and_reset (core::Size const moving_res) |
void | set_working_prepack_res (utility::vector1< core::Size > const &setting) |
void | set_working_minimize_res (utility::vector1< core::Size > const &setting) |
void | set_figure_out_prepack_res (bool const setting) |
void | set_working_parameters (working_parameters::StepWiseWorkingParametersCOP working_parameters) |
working_parameters::StepWiseWorkingParametersCOP | working_parameters () |
void | set_options (options::StepWiseModelerOptionsCOP options) |
options::StepWiseModelerOptionsCOP | options () |
void | set_precomputed_library_mover (precomputed::PrecomputedLibraryMoverCOP precomputed_library_mover) |
precomputed::PrecomputedLibraryMoverCOP | precomputed_library_mover () |
core::Size | get_num_sampled () |
void | set_input_streams (utility::vector1< protein::InputStreamWithResidueInfoOP > const &input_streams) |
void | set_moving_res_list (utility::vector1< core::Size > const &setting) |
core::scoring::ScoreFunctionCOP | scorefxn () |
![]() | |
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 Member Functions | |
void | initialize (core::pose::Pose &pose) |
void | reinitialize (core::pose::Pose &pose) |
void | initialize_working_parameters_and_root (core::pose::Pose &pose) |
void | initialize_scorefunctions (core::pose::Pose const &pose) |
void | initialize_constraints (core::pose::Pose &pose) |
void | do_prepacking (core::pose::Pose &pose) |
void | do_sampling (core::pose::Pose &pose) |
void | do_minimizing (core::pose::Pose &pose) |
void | do_stepwise_lores (core::pose::Pose &pose) |
void | figure_out_moving_res_list (core::pose::Pose const &pose) |
void | figure_out_moving_res_list_from_most_distal_res (core::pose::Pose const &pose, core::Size const moving_res) |
bool | sampling_successful () |
void | look_for_precompute_move (core::pose::Pose &pose) |
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::StepWiseModeler::StepWiseModeler | ( | core::Size const | moving_res, |
core::scoring::ScoreFunctionCOP | scorefxn | ||
) |
References set_moving_res_and_reset().
protocols::stepwise::modeler::StepWiseModeler::StepWiseModeler | ( | core::scoring::ScoreFunctionCOP | scorefxn | ) |
|
overridedefault |
protocols::stepwise::modeler::StepWiseModeler::StepWiseModeler | ( | StepWiseModeler const & | src | ) |
|
overridevirtual |
Main Method.
Implements protocols::moves::Mover.
References do_minimizing(), do_prepacking(), do_sampling(), do_stepwise_lores(), initialize(), options_, reinitialize(), and sampling_successful().
|
virtual |
|
private |
References master_packer_, options_, pose_list_, scorefxn_, and working_parameters_.
Referenced by apply().
|
private |
References master_packer_, options_, pack_scorefxn_, working_parameters_, and working_prepack_res_.
Referenced by apply().
|
private |
References protocols::stepwise::modeler::StepWiseConnectionSampler::apply(), protocols::stepwise::modeler::StepWiseConnectionSampler::get_pose_list(), input_streams_, master_packer_, options_, pose_list_, sample_scorefxn_, protocols::stepwise::modeler::StepWiseConnectionSampler::set_input_streams(), protocols::stepwise::modeler::StepWiseConnectionSampler::set_master_packer(), protocols::stepwise::modeler::StepWiseConnectionSampler::set_options(), protocols::stepwise::modeler::StepWiseConnectionSampler::set_scorefxn(), and working_parameters_.
Referenced by apply().
|
private |
|
private |
References figure_out_moving_res_list_from_most_distal_res(), moving_res_, and moving_res_list_.
Referenced by initialize_working_parameters_and_root().
|
private |
References protocols::stepwise::modeler::protein::figure_out_protein_modeling_info(), and moving_res_list_.
Referenced by figure_out_moving_res_list().
|
inlineoverridevirtual |
Each derived class must specify its name. The class name.
Implements protocols::moves::Mover.
|
inline |
References pose_list_.
|
private |
References figure_out_prepack_res_, initialize_scorefunctions(), initialize_working_parameters_and_root(), moving_res_list_, pose_list_, and prepack_res_was_inputted_.
Referenced by apply().
|
private |
References core::pose::full_model_info::const_full_model_info(), and core::pose::Pose::constraint_set().
Referenced by initialize_working_parameters_and_root().
|
private |
|
private |
References protocols::stepwise::modeler::align::align_pose_and_add_rmsd_constraints(), core::pose::Pose::constraint_set(), cst_set_, figure_out_moving_res_list(), figure_out_prepack_res_, protocols::stepwise::modeler::packer::figure_out_working_interface_res(), core::pose::fix_up_residue_type_variants(), protocols::stepwise::modeler::get_all_working_moving_res(), protocols::moves::Mover::get_native_pose(), initialize_constraints(), look_for_precompute_move(), core::pose::full_model_info::make_sure_full_model_info_is_setup(), moving_res_list_, options_, protocols::stepwise::modeler::revise_root_and_moving_res_list(), protocols::stepwise::modeler::working_parameters::setup_working_parameters_for_swa(), working_minimize_res_, working_parameters_, and working_prepack_res_.
Referenced by initialize().
|
private |
References core::pose::full_model_info::const_full_model_info(), core::pose::full_model_info::get_moving_res_from_full_model_info(), moving_res_, precomputed_library_mover_, set_moving_res_and_reset(), set_working_minimize_res(), and set_working_prepack_res().
Referenced by initialize_working_parameters_and_root().
StepWiseModeler & protocols::stepwise::modeler::StepWiseModeler::operator= | ( | StepWiseModeler const & | src | ) |
|
inline |
References options_.
Referenced by set_options().
|
inline |
References precomputed_library_mover_.
Referenced by set_precomputed_library_mover().
|
private |
References core::pose::Pose::constraint_set(), cst_set_, figure_out_prepack_res_, moving_res_list_, prepack_res_was_inputted_, working_minimize_res_, working_parameters_, and working_prepack_res_.
Referenced by apply().
|
private |
References options_, pose_list_, and protocols::TR().
Referenced by apply().
|
inline |
References scorefxn_.
|
inline |
References figure_out_prepack_res_.
void protocols::stepwise::modeler::StepWiseModeler::set_input_streams | ( | utility::vector1< protein::InputStreamWithResidueInfoOP > const & | input_streams | ) |
References input_streams_.
void protocols::stepwise::modeler::StepWiseModeler::set_moving_res_and_reset | ( | core::Size const | moving_res | ) |
References moving_res_, and working_parameters_.
Referenced by look_for_precompute_move(), and StepWiseModeler().
|
inline |
References moving_res_list_.
|
inline |
|
inline |
References precomputed_library_mover(), and precomputed_library_mover_.
|
inline |
References working_minimize_res_.
Referenced by look_for_precompute_move().
void protocols::stepwise::modeler::StepWiseModeler::set_working_parameters | ( | working_parameters::StepWiseWorkingParametersCOP | working_parameters | ) |
References working_parameters(), and working_parameters_.
|
inline |
References prepack_res_was_inputted_, and working_prepack_res_.
Referenced by look_for_precompute_move().
working_parameters::StepWiseWorkingParametersCOP protocols::stepwise::modeler::StepWiseModeler::working_parameters | ( | ) |
References working_parameters_.
Referenced by set_working_parameters().
|
private |
Referenced by initialize_working_parameters_and_root(), and reinitialize().
|
private |
Referenced by initialize(), initialize_working_parameters_and_root(), operator=(), reinitialize(), and set_figure_out_prepack_res().
|
private |
Referenced by do_sampling(), operator=(), and set_input_streams().
|
private |
Referenced by do_minimizing(), do_prepacking(), and do_sampling().
|
private |
Referenced by figure_out_moving_res_list(), look_for_precompute_move(), operator=(), and set_moving_res_and_reset().
|
private |
|
private |
|
private |
Referenced by do_prepacking(), and initialize_scorefunctions().
|
private |
Referenced by do_minimizing(), do_sampling(), do_stepwise_lores(), get_num_sampled(), initialize(), and sampling_successful().
|
private |
Referenced by look_for_precompute_move(), operator=(), precomputed_library_mover(), and set_precomputed_library_mover().
|
private |
Referenced by initialize(), operator=(), reinitialize(), and set_working_prepack_res().
|
private |
Referenced by do_sampling(), and initialize_scorefunctions().
|
private |
Referenced by do_minimizing(), do_stepwise_lores(), initialize_scorefunctions(), operator=(), and scorefxn().
|
private |
Referenced by initialize_working_parameters_and_root(), operator=(), reinitialize(), and set_working_minimize_res().
|
private |
|
private |
Referenced by do_prepacking(), initialize_working_parameters_and_root(), operator=(), reinitialize(), and set_working_prepack_res().