Rosetta 3.5
|
#include <StepWisePoseSetup.hh>
Public Member Functions | |
StepWisePoseSetup (utility::vector1< core::Size > const &moving_res_list, std::string const &desired_sequence, utility::vector1< InputStreamWithResidueInfoOP > &input_streams_with_residue_info, utility::vector1< core::Size > const &cutpoint_open, utility::vector1< core::Size > const &cutpoint_closed) | |
~StepWisePoseSetup () | |
virtual void | apply (core::pose::Pose &pose_to_visualize) |
Apply the minimizer to one pose. More... | |
virtual std::string | get_name () const |
Each derived class must specify its name. The class name. More... | |
StepWiseJobParametersOP & | job_parameters () |
void | set_fixed_res (utility::vector1< core::Size > const &fixed_res) |
void | set_jump_res (utility::vector1< core::Size > const &jump_res) |
void | set_virtual_res (utility::vector1< core::Size > const &set_virtual_res_list) |
void | set_terminal_res (utility::vector1< core::Size > const &terminal_res) |
void | set_superimpose_res (utility::vector1< core::Size > const &superimpose_res) |
void | set_calc_rms_res (utility::vector1< core::Size > const &calc_rms_res) |
void | set_bulge_res (utility::vector1< core::Size > const &bulge_res) |
void | set_bridge_res (utility::vector1< core::Size > const &bridge_res) |
void | set_parin_favorite_output (bool const &setting) |
void | set_rsd_set (core::chemical::ResidueTypeSetCAP &rsd_set) |
void | set_cst_file (std::string const cst_file) |
void | set_disulfide_file (std::string const disulfide_file) |
void | set_align_file (std::string const align_file) |
void | set_add_peptide_plane_variants (bool const &setting) |
void | set_remove_nterminus_variant (bool const &setting) |
void | set_remove_cterminus_variant (bool const &setting) |
void | align_pose (core::pose::Pose &pose) |
bool | ready_to_align () const |
void | set_dump (bool const dump) |
void | set_secstruct (std::string const secstruct) |
![]() | |
Mover () | |
virtual | ~Mover () |
virtual MoverSP | create () |
virtual void | apply (core::io::serialization::PipeMap &pmap) |
virtual void | parse_state (SerializableState const &state) |
virtual void | parse_def (utility::lua::LuaObject const &def, utility::lua::LuaObject const &score_fxns, utility::lua::LuaObject const &tasks, MoverCacheSP cache) |
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) |
virtual MoverOP | clone () const |
clone has to be overridden only if clone invocation is expected. More... | |
virtual void | parse_my_tag (TagPtr const tag, DataMap &data, Filters_map const &filters, Movers_map const &movers, Pose const &pose) |
Called by MoverFactory when constructing new Movers. Takes care of the specific mover's parsing. More... | |
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... | |
virtual MoverOP | fresh_instance () const |
this is like clone(), except it generates a new mover object freshly created with the default ctor. This function should be pure virtual but that would disrupt the code base; MAKE SURE YOU DEFINE IT if you want to have your mover be a protocol handed to the job distributor (august 08 vintage). More... | |
void | set_current_job (protocols::jobdist::BasicJobCOP job) |
jobdist::BasicJobCOP | get_current_job () const |
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... | |
protocols::swa::StepWisePoseSetup::StepWisePoseSetup | ( | utility::vector1< core::Size > const & | moving_res_list, |
std::string const & | desired_sequence, | ||
utility::vector1< InputStreamWithResidueInfoOP > & | input_streams_with_residue_info, | ||
utility::vector1< core::Size > const & | cutpoint_open, | ||
utility::vector1< core::Size > const & | cutpoint_closed | ||
) |
References cutpoint_closed_, cutpoint_open_, and is_cutpoint_.
protocols::swa::StepWisePoseSetup::~StepWisePoseSetup | ( | ) |
|
private |
void protocols::swa::StepWisePoseSetup::align_pose | ( | core::pose::Pose & | pose) |
References alignment_atom_id_map_, ready_to_align_, core::scoring::superimpose_pose(), and working_align_pose_.
Referenced by align_poses().
|
private |
References align_file_, align_pose(), alignment_atom_id_map_, protocols::swa::create_alignment_id_map(), protocols::moves::Mover::get_native_pose(), get_working_pose(), job_parameters_, core::import_pose::pose_from_pdb(), ready_to_align_, rsd_set_, core::scoring::superimpose_pose(), core::pose::Pose::total_residue(), working_align_pose_, and working_native_pose.
Referenced by apply().
|
private |
Referenced by already_connected(), and figure_out_jump_partners().
|
private |
References already_connected().
|
virtual |
Apply the minimizer to one pose.
Implements protocols::moves::Mover.
References add_peptide_plane_variants_, add_terminal_res_repulsion(), align_poses(), apply_bulge_variants(), apply_cutpoint_variants(), apply_full_to_sub_mapping(), apply_peptide_plane_variants(), apply_virtual_phosphate_variants(), apply_virtual_res_variant(), bridge_res_, calc_rms_res_, check_close_chain_break(), figure_out_cuts(), figure_out_gap_size_and_first_chain_break_res(), figure_out_jump_partners(), figure_out_partition_definition(), figure_out_Prepend_Internal(), figure_out_working_sequence_and_mapping(), fixed_res_, initialize_pose_from_streams(), job_parameters_, make_pose(), reroot_fold_tree(), setup_constraints(), setup_disulfides(), setup_secstruct(), setup_working_native_pose(), superimpose_res_, terminal_res_, virtualize_5prime_phosphates_, and working_native_pose.
|
private |
References core::pose::add_variant_type_to_pose_residue(), bulge_res_, and job_parameters_.
Referenced by apply().
|
private |
References core::pose::add_variant_type_to_pose_residue(), core::id::BB, protocols::swa::rna::Correctly_position_cutpoint_phosphate_torsions(), cutpoint_closed_, core::chemical::CUTPOINT_LOWER, core::chemical::CUTPOINT_UPPER, core::conformation::Residue::is_RNA(), job_parameters_, core::pose::Pose::residue(), core::pose::Pose::set_torsion(), and core::pose::Pose::total_residue().
Referenced by apply().
|
private |
References job_parameters_.
Referenced by apply().
|
private |
|
private |
References add_peptide_plane_variants_.
|
private |
|
private |
References core::pose::add_variant_type_to_pose_residue(), core::chemical::CUTPOINT_UPPER, core::chemical::ResidueType::has_variant_type(), core::conformation::Residue::is_RNA(), is_working_cutpoint_closed(), job_parameters_, core::pose::Pose::residue(), and core::conformation::Residue::type().
Referenced by apply().
|
private |
References core::pose::add_variant_type_to_pose_residue(), job_parameters_, and virtual_res_list_.
Referenced by apply().
|
private |
References protocols::swa::Is_close_chain_break(), and job_parameters_.
Referenced by apply().
|
private |
|
private |
|
private |
References core::pose::Pose::chi(), core::conformation::Residue::is_RNA(), job_parameters_, core::pose::Pose::residue(), and core::pose::Pose::set_chi().
Referenced by initialize_pose_from_streams().
|
private |
References cuts_, and job_parameters_.
Referenced by apply().
|
private |
References BRIDGE_RES_, cutpoint_open_, and job_parameters_.
Referenced by apply().
|
private |
References already_connected(), BRIDGE_RES_, protocols::swa::Contain_seq_num(), job_parameters_, jump_partners_, jump_res_, moving_res_list_, and which_chain().
Referenced by apply().
|
private |
References core::pose::Pose::fold_tree(), job_parameters_, core::kinematics::FoldTree::partition_by_residue(), and core::pose::Pose::total_residue().
Referenced by apply().
|
private |
References core::pose::Pose::fold_tree(), core::kinematics::FoldTree::is_cutpoint(), job_parameters_, and core::pose::Pose::total_residue().
Referenced by apply().
|
private |
References bridge_res_, BRIDGE_RES_, desired_sequence_, input_streams_with_residue_info_, is_cutpoint_, job_parameters_, and moving_res_list_.
Referenced by apply().
|
private |
References protocols::swa::protein::get_pretend_phi_explicit(), protocols::swa::protein::get_pretend_psi_explicit(), core::conformation::Residue::is_protein(), core::pose::Pose::phi(), phi_offsets_, core::pose::Pose::psi(), psi_offsets_, core::pose::Pose::residue(), core::pose::Pose::set_phi(), core::pose::Pose::set_psi(), and core::pose::Pose::total_residue().
|
virtual |
Each derived class must specify its name. The class name.
Implements protocols::moves::Mover.
|
private |
References core::conformation::Residue::is_protein(), and core::conformation::Residue::is_RNA().
Referenced by make_pose().
|
private |
References core::pose::Pose::append_residue_by_bond(), core::pose::Pose::append_residue_by_jump(), core::pose::Pose::fold_tree(), job_parameters_, protocols::rna::make_phosphate_nomenclature_matches_mini(), core::pose::Pose::sequence(), and core::pose::Pose::total_residue().
Referenced by align_poses(), and setup_working_native_pose().
|
private |
|
private |
References protocols::swa::protein::get_pretend_phi_explicit(), protocols::swa::protein::get_pretend_psi_explicit(), core::conformation::Residue::is_protein(), phi_offsets_, psi_offsets_, core::pose::Pose::residue(), and core::pose::Pose::total_residue().
Referenced by initialize_pose_from_streams().
|
private |
|
private |
References cutpoint_closed_.
Referenced by apply_peptide_plane_variants(), and apply_virtual_phosphate_variants().
StepWiseJobParametersOP & protocols::swa::StepWisePoseSetup::job_parameters | ( | ) |
References job_parameters_.
|
private |
References core::pose::Pose::annotated_sequence(), desired_sequence_, core::pose::make_pose_from_sequence(), remove_cterminus_variant_, core::pose::remove_lower_terminus_type_from_pose_residue(), remove_nterminus_variant_, core::pose::remove_upper_terminus_type_from_pose_residue(), rsd_set_, and core::pose::Pose::total_residue().
Referenced by make_pose(), setup_constraints(), and setup_disulfides().
|
private |
References cuts_, core::pose::Pose::fold_tree(), get_swa_jump_atom(), core::conformation::Residue::is_protein(), job_parameters_, jump_partners_, make_full_pose(), protocols::swa::pdbslice(), core::pose::Pose::residue(), core::pose::Pose::set_omega(), core::pose::Pose::set_phi(), core::pose::Pose::set_psi(), and core::pose::Pose::total_residue().
Referenced by apply().
bool protocols::swa::StepWisePoseSetup::ready_to_align | ( | ) | const |
References ready_to_align_.
|
private |
|
private |
void protocols::swa::StepWisePoseSetup::set_add_peptide_plane_variants | ( | bool const & | setting) |
References add_peptide_plane_variants_.
void protocols::swa::StepWisePoseSetup::set_align_file | ( | std::string const | align_file) |
References align_file_.
void protocols::swa::StepWisePoseSetup::set_bridge_res | ( | utility::vector1< core::Size > const & | bridge_res) |
References bridge_res_.
void protocols::swa::StepWisePoseSetup::set_bulge_res | ( | utility::vector1< core::Size > const & | bulge_res) |
References bulge_res_.
void protocols::swa::StepWisePoseSetup::set_calc_rms_res | ( | utility::vector1< core::Size > const & | calc_rms_res) |
References calc_rms_res_.
void protocols::swa::StepWisePoseSetup::set_cst_file | ( | std::string const | cst_file) |
References cst_file_.
void protocols::swa::StepWisePoseSetup::set_disulfide_file | ( | std::string const | disulfide_file) |
References disulfide_file_.
void protocols::swa::StepWisePoseSetup::set_fixed_res | ( | utility::vector1< core::Size > const & | fixed_res) |
References fixed_res_.
void protocols::swa::StepWisePoseSetup::set_jump_res | ( | utility::vector1< core::Size > const & | jump_res) |
References jump_res_.
|
inline |
References parin_favorite_output_.
|
inline |
References remove_cterminus_variant_.
|
inline |
References remove_nterminus_variant_.
void protocols::swa::StepWisePoseSetup::set_rsd_set | ( | core::chemical::ResidueTypeSetCAP & | rsd_set) |
References rsd_set_.
void protocols::swa::StepWisePoseSetup::set_secstruct | ( | std::string const | secstruct) |
References secstruct_.
void protocols::swa::StepWisePoseSetup::set_superimpose_res | ( | utility::vector1< core::Size > const & | superimpose_res) |
References superimpose_res_.
void protocols::swa::StepWisePoseSetup::set_terminal_res | ( | utility::vector1< core::Size > const & | terminal_res) |
References terminal_res_.
void protocols::swa::StepWisePoseSetup::set_virtual_res | ( | utility::vector1< core::Size > const & | set_virtual_res_list) |
References virtual_res_list_.
|
private |
References core::scoring::atom_pair_constraint, core::pose::Pose::constraint_set(), protocols::swa::constraint_set_slice(), core::scoring::coordinate_constraint, cst_file_, cst_set_, core::scoring::constraints::ConstraintIO::get_instance(), job_parameters_, make_full_pose(), core::scoring::constraints::ConstraintIO::read_constraints(), and core::scoring::ScoreFunction::set_weight().
Referenced by apply().
|
private |
References core::pose::Pose::annotated_sequence(), core::pose::Pose::conformation(), core::chemical::DISULFIDE, disulfide_file_, core::io::raw_data::DisulfideFile::disulfides(), core::conformation::Conformation::fix_disulfides(), core::chemical::ResidueType::has_variant_type(), job_parameters_, make_full_pose(), core::pose::Pose::residue_type(), and core::pose::Pose::total_residue().
Referenced by apply().
|
private |
References desired_sequence_, job_parameters_, secstruct_, core::pose::Pose::set_secstruct(), and core::pose::Pose::total_residue().
Referenced by apply().
|
private |
References protocols::moves::Mover::get_native_pose(), get_working_pose(), and working_native_pose.
Referenced by apply().
References job_parameters_.
Referenced by figure_out_jump_partners().
|
private |
|
private |
Referenced by align_poses(), initialize_pose_from_streams(), and set_align_file().
|
private |
Referenced by align_pose(), and align_poses().
|
private |
Referenced by apply(), figure_out_working_sequence_and_mapping(), and set_bridge_res().
|
private |
|
private |
Referenced by apply_bulge_variants(), and set_bulge_res().
|
private |
Referenced by apply(), and set_calc_rms_res().
|
private |
Referenced by set_cst_file(), and setup_constraints().
|
private |
Referenced by setup_constraints().
|
private |
Referenced by apply_cutpoint_variants(), is_working_cutpoint_closed(), and StepWisePoseSetup().
|
private |
Referenced by figure_out_gap_size_and_first_chain_break_res(), and StepWisePoseSetup().
|
private |
Referenced by figure_out_cuts(), and make_pose().
|
private |
Referenced by figure_out_working_sequence_and_mapping(), make_full_pose(), reroot_fold_tree(), and setup_secstruct().
|
private |
Referenced by set_disulfide_file(), and setup_disulfides().
|
private |
Referenced by initialize_pose_from_streams(), and set_dump().
|
private |
Referenced by apply(), and set_fixed_res().
|
private |
Referenced by figure_out_working_sequence_and_mapping(), and initialize_pose_from_streams().
|
private |
Referenced by figure_out_working_sequence_and_mapping(), and StepWisePoseSetup().
|
private |
Referenced by add_terminal_res_repulsion(), align_poses(), apply(), apply_bulge_variants(), apply_cutpoint_variants(), apply_full_to_sub_mapping(), apply_peptide_plane_variants(), apply_virtual_phosphate_variants(), apply_virtual_res_variant(), check_close_chain_break(), check_superimpose_res(), copy_rna_chi(), figure_out_cuts(), figure_out_gap_size_and_first_chain_break_res(), figure_out_jump_partners(), figure_out_partition_definition(), figure_out_Prepend_Internal(), figure_out_working_sequence_and_mapping(), get_working_pose(), initialize_pose_from_streams(), job_parameters(), make_pose(), reroot_fold_tree(), save_phi_psi_offsets(), setup_constraints(), setup_disulfides(), setup_secstruct(), and which_chain().
|
private |
Referenced by figure_out_jump_partners(), and make_pose().
|
private |
Referenced by figure_out_jump_partners(), and set_jump_res().
|
private |
Referenced by figure_out_jump_partners(), and figure_out_working_sequence_and_mapping().
|
private |
Referenced by set_parin_favorite_output().
|
private |
Referenced by fix_phi_psi_offsets(), initialize_phi_psi_offsets(), and save_phi_psi_offsets().
|
private |
Referenced by fix_phi_psi_offsets(), initialize_phi_psi_offsets(), and save_phi_psi_offsets().
|
private |
Referenced by align_pose(), align_poses(), and ready_to_align().
|
private |
Referenced by make_full_pose(), and set_remove_cterminus_variant().
|
private |
Referenced by make_full_pose(), and set_remove_nterminus_variant().
|
private |
Referenced by align_poses(), initialize_pose_from_streams(), make_full_pose(), and set_rsd_set().
|
private |
Referenced by set_secstruct(), and setup_secstruct().
|
private |
Referenced by apply(), and set_superimpose_res().
|
private |
Referenced by apply(), and set_terminal_res().
|
private |
Referenced by apply_virtual_res_variant(), and set_virtual_res().
|
private |
Referenced by apply().
|
private |
Referenced by align_pose(), and align_poses().
|
private |
Referenced by align_poses(), apply(), and setup_working_native_pose().