Rosetta
|
#include <StepWiseProteinPoseSetup.hh>
Public Member Functions | |
StepWiseProteinPoseSetup (utility::vector1< core::Size > const &moving_res_list, std::string const &desired_sequence, utility::vector1< protocols::stepwise::modeler::protein::InputStreamWithResidueInfoOP > &input_streams_with_residue_info, utility::vector1< core::Size > const &cutpoint_open, utility::vector1< core::Size > const &cutpoint_closed) | |
~StepWiseProteinPoseSetup () override | |
void | apply (core::pose::Pose &pose_to_visualize) override |
Apply the minimizer to one pose. More... | |
std::string | get_name () const override |
Each derived class must specify its name. The class name. More... | |
stepwise::modeler::working_parameters::StepWiseWorkingParametersOP & | working_parameters () |
void | set_fixed_res (utility::vector1< core::Size > const &fixed_res) |
void | set_extra_minimize_res (utility::vector1< core::Size > const &setting) |
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) const |
bool | ready_to_align () const |
void | set_dump (bool const dump) |
void | set_add_virt_res (bool const setting) |
void | set_secstruct (std::string const &secstruct) |
![]() | |
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... | |
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::legacy::modeler::protein::StepWiseProteinPoseSetup::StepWiseProteinPoseSetup | ( | utility::vector1< core::Size > const & | moving_res_list, |
std::string const & | desired_sequence, | ||
utility::vector1< protocols::stepwise::modeler::protein::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_.
|
overridedefault |
|
private |
References core::chemical::ResidueTypeBase::aa(), core::chemical::aa_vrt, core::pose::Pose::append_residue_by_jump(), core::conformation::ResidueFactory::create_residue(), core::pose::Pose::fold_tree(), core::kinematics::FoldTree::reorder(), core::pose::Pose::residue_type(), core::kinematics::FoldTree::root(), core::pose::Pose::size(), protocols::TR(), core::pose::virtual_type_for_pose(), and working_parameters_.
Referenced by apply(), and setup_working_native_pose().
|
private |
void protocols::stepwise::legacy::modeler::protein::StepWiseProteinPoseSetup::align_pose | ( | core::pose::Pose & | pose | ) | const |
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::stepwise::modeler::align::create_alignment_id_map_legacy(), protocols::moves::Mover::get_native_pose(), get_working_pose(), core::import_pose::PDB_file, core::import_pose::pose_from_file(), ready_to_align_, rsd_set_, core::pose::Pose::size(), core::scoring::superimpose_pose(), protocols::TR(), working_align_pose_, working_native_pose, and working_parameters_.
Referenced by apply().
|
private |
References already_connected().
|
private |
Referenced by already_connected(), and figure_out_jump_partners().
|
overridevirtual |
Apply the minimizer to one pose.
Implements protocols::moves::Mover.
References add_aa_virt_rsd_as_root(), add_peptide_plane_variants_, add_terminal_res_repulsion(), add_virt_res_, 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(), make_pose(), reroot_fold_tree(), setup_constraints(), setup_disulfides(), setup_full_model_info(), setup_secstruct(), setup_working_native_pose(), superimpose_res_, virtualize_5prime_phosphates_, working_native_pose, and working_parameters_.
|
private |
References core::pose::add_variant_type_to_pose_residue(), core::chemical::BULGE, bulge_res_, core::pose::full_model_info::full_to_sub(), and working_parameters_.
Referenced by apply().
|
private |
References core::id::BB, core::pose::correctly_add_cutpoint_variants(), cutpoint_closed_, core::pose::Pose::fold_tree(), core::pose::full_model_info::full_to_sub(), core::conformation::Residue::mainchain_torsions(), core::pose::Pose::residue(), core::pose::Pose::set_torsion(), core::pose::Pose::size(), protocols::TR(), and working_parameters_.
Referenced by apply().
|
private |
References working_parameters_.
Referenced by apply().
|
private |
References add_peptide_plane_variants_, core::pose::add_variant_type_to_pose_residue(), core::chemical::C_METHYLAMIDATION, core::pose::full_model_info::full_to_sub(), core::chemical::ResidueTypeBase::has_variant_type(), core::chemical::ResidueTypeBase::is_protein(), is_working_cutpoint_closed(), core::chemical::LOWER_TERMINUS_VARIANT, core::chemical::N_ACETYLATION, core::pose::Pose::residue_type(), core::chemical::UPPER_TERMINUS_VARIANT, and working_parameters_.
Referenced by apply().
|
private |
References add_peptide_plane_variants_.
|
private |
|
private |
References core::pose::add_variant_type_to_pose_residue(), core::chemical::CUTPOINT_UPPER, core::pose::full_model_info::full_to_sub(), core::chemical::ResidueTypeBase::has_variant_type(), core::chemical::ResidueTypeBase::is_RNA(), is_working_cutpoint_closed(), core::pose::Pose::residue_type(), core::chemical::VIRTUAL_PHOSPHATE, and working_parameters_.
Referenced by apply().
|
private |
|
private |
References protocols::stepwise::legacy::modeler::protein::is_close_chain_break(), and working_parameters_.
Referenced by apply().
|
private |
|
private |
|
private |
|
private |
References cuts_, core::pose::full_model_info::full_to_sub(), and working_parameters_.
Referenced by apply().
|
private |
References BRIDGE_RES, cutpoint_open_, core::pose::full_model_info::full_to_sub(), protocols::TR(), and working_parameters_.
Referenced by apply().
|
private |
References already_connected(), BRIDGE_RES, core::pose::full_model_info::full_to_sub(), jump_partners_, jump_res_, moving_res_list_, protocols::TR(), which_chain(), and working_parameters_.
Referenced by apply().
|
private |
|
private |
References core::pose::Pose::fold_tree(), core::kinematics::FoldTree::is_cutpoint(), core::pose::Pose::size(), and working_parameters_.
Referenced by apply().
|
private |
References BRIDGE_RES, bridge_res_, protocols::stepwise::legacy::modeler::protein::convert_to_vector1(), desired_sequence_, core::pose::full_model_info::full_to_sub(), input_streams_with_residue_info_, is_cutpoint_, MOVING_RES, moving_res_list_, core::pose::rna::remove_and_store_bracketed(), core::pose::rna::remove_bracketed(), protocols::TR(), and working_parameters_.
Referenced by apply().
|
private |
References protocols::stepwise::legacy::modeler::protein::get_pretend_phi_explicit(), protocols::stepwise::legacy::modeler::protein::get_pretend_psi_explicit(), core::chemical::ResidueTypeBase::is_protein(), core::pose::Pose::phi(), phi_offsets_, core::pose::Pose::psi(), psi_offsets_, core::pose::Pose::residue_type(), core::pose::Pose::set_phi(), core::pose::Pose::set_psi(), and core::pose::Pose::size().
|
overridevirtual |
Each derived class must specify its name. The class name.
Implements protocols::moves::Mover.
|
private |
References core::chemical::ResidueTypeBase::is_protein(), and core::chemical::ResidueTypeBase::is_RNA().
Referenced by make_pose().
|
private |
References core::pose::Pose::append_residue_by_bond(), core::pose::Pose::append_residue_by_jump(), core::conformation::Residue::clone(), core::pose::Pose::fold_tree(), core::pose::rna::make_phosphate_nomenclature_matches_mini(), core::pose::Pose::residue(), core::pose::Pose::sequence(), core::pose::Pose::size(), and working_parameters_.
Referenced by align_poses(), and setup_working_native_pose().
|
private |
|
private |
References protocols::stepwise::legacy::modeler::protein::get_pretend_phi_explicit(), protocols::stepwise::legacy::modeler::protein::get_pretend_psi_explicit(), core::chemical::ResidueTypeBase::is_protein(), phi_offsets_, psi_offsets_, core::pose::Pose::residue_type(), and core::pose::Pose::size().
Referenced by initialize_pose_from_streams().
|
private |
|
private |
References cutpoint_closed_, and core::pose::full_model_info::full_to_sub().
Referenced by apply_peptide_plane_variants(), and apply_virtual_phosphate_variants().
|
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_, core::pose::Pose::size(), and protocols::TR().
Referenced by make_pose(), setup_constraints(), and setup_disulfides().
|
private |
References cuts_, core::kinematics::FoldTree::downstream_jump_residue(), core::pose::Pose::fold_tree(), get_stepwise_jump_atom(), core::chemical::ResidueTypeBase::is_protein(), jump_partners_, make_full_pose(), core::pose::pdbslice(), core::kinematics::FoldTree::reassign_atoms_for_intra_residue_stubs(), core::pose::Pose::residue_type(), core::kinematics::FoldTree::set_jump_atoms(), core::pose::Pose::set_omega(), core::pose::Pose::set_phi(), core::pose::Pose::set_psi(), core::pose::Pose::size(), protocols::TR(), core::kinematics::FoldTree::tree_from_jumps_and_cuts(), core::kinematics::FoldTree::upstream_jump_residue(), and working_parameters_.
Referenced by apply().
bool protocols::stepwise::legacy::modeler::protein::StepWiseProteinPoseSetup::ready_to_align | ( | ) | const |
References ready_to_align_.
|
private |
|
private |
References core::pose::full_model_info::full_to_sub(), protocols::stepwise::legacy::modeler::protein::get_pretend_phi_explicit(), protocols::stepwise::legacy::modeler::protein::get_pretend_psi_explicit(), core::chemical::ResidueTypeBase::is_protein(), phi_offsets_, psi_offsets_, core::pose::Pose::residue_type(), and working_parameters_.
Referenced by initialize_pose_from_streams().
void protocols::stepwise::legacy::modeler::protein::StepWiseProteinPoseSetup::set_add_peptide_plane_variants | ( | bool const & | setting | ) |
References add_peptide_plane_variants_.
void protocols::stepwise::legacy::modeler::protein::StepWiseProteinPoseSetup::set_add_virt_res | ( | bool const | setting | ) |
References add_virt_res_.
void protocols::stepwise::legacy::modeler::protein::StepWiseProteinPoseSetup::set_align_file | ( | std::string const & | align_file | ) |
References align_file_.
void protocols::stepwise::legacy::modeler::protein::StepWiseProteinPoseSetup::set_bridge_res | ( | utility::vector1< core::Size > const & | bridge_res | ) |
References bridge_res_.
void protocols::stepwise::legacy::modeler::protein::StepWiseProteinPoseSetup::set_bulge_res | ( | utility::vector1< core::Size > const & | bulge_res | ) |
References bulge_res_.
void protocols::stepwise::legacy::modeler::protein::StepWiseProteinPoseSetup::set_calc_rms_res | ( | utility::vector1< core::Size > const & | calc_rms_res | ) |
References calc_rms_res_.
void protocols::stepwise::legacy::modeler::protein::StepWiseProteinPoseSetup::set_cst_file | ( | std::string const & | cst_file | ) |
References cst_file_.
void protocols::stepwise::legacy::modeler::protein::StepWiseProteinPoseSetup::set_disulfide_file | ( | std::string const & | disulfide_file | ) |
References disulfide_file_.
void protocols::stepwise::legacy::modeler::protein::StepWiseProteinPoseSetup::set_dump | ( | bool const | dump | ) |
References dump_.
|
inline |
References extra_minimize_res_.
void protocols::stepwise::legacy::modeler::protein::StepWiseProteinPoseSetup::set_fixed_res | ( | utility::vector1< core::Size > const & | fixed_res | ) |
References fixed_res_.
void protocols::stepwise::legacy::modeler::protein::StepWiseProteinPoseSetup::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::stepwise::legacy::modeler::protein::StepWiseProteinPoseSetup::set_rsd_set | ( | core::chemical::ResidueTypeSetCAP & | rsd_set | ) |
References rsd_set_.
void protocols::stepwise::legacy::modeler::protein::StepWiseProteinPoseSetup::set_secstruct | ( | std::string const & | secstruct | ) |
References secstruct_.
void protocols::stepwise::legacy::modeler::protein::StepWiseProteinPoseSetup::set_superimpose_res | ( | utility::vector1< core::Size > const & | superimpose_res | ) |
References superimpose_res_.
void protocols::stepwise::legacy::modeler::protein::StepWiseProteinPoseSetup::set_terminal_res | ( | utility::vector1< core::Size > const & | terminal_res | ) |
References terminal_res_.
void protocols::stepwise::legacy::modeler::protein::StepWiseProteinPoseSetup::set_virtual_res | ( | utility::vector1< core::Size > const & | set_virtual_res_list | ) |
References virtual_res_list_.
|
private |
|
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::pose::full_model_info::full_to_sub(), core::chemical::ResidueTypeBase::has_variant_type(), make_full_pose(), core::pose::Pose::residue_type(), core::pose::Pose::size(), protocols::TR(), and working_parameters_.
Referenced by apply().
|
private |
References BRIDGE_RES, core::pose::full_model_info::CALC_RMS, calc_rms_res_, cutpoint_open_, desired_sequence_, core::pose::full_model_info::EXTRA_MINIMIZE, extra_minimize_res_, core::pose::copydofs::FIXED_DOMAIN, fixed_res_, core::pose::full_model_info::INPUT_DOMAIN, MOVING_RES, core::pose::full_model_info::set_full_model_info(), and working_parameters_.
Referenced by apply(), and setup_working_native_pose().
|
private |
References desired_sequence_, secstruct_, core::pose::Pose::set_secstruct(), core::pose::Pose::size(), and working_parameters_.
Referenced by apply().
|
private |
References add_aa_virt_rsd_as_root(), add_virt_res_, protocols::moves::Mover::get_native_pose(), get_working_pose(), setup_full_model_info(), protocols::TR(), and working_native_pose.
Referenced by apply().
|
private |
References core::pose::full_model_info::full_to_sub(), and working_parameters_.
Referenced by figure_out_jump_partners().
stepwise::modeler::working_parameters::StepWiseWorkingParametersOP & protocols::stepwise::legacy::modeler::protein::StepWiseProteinPoseSetup::working_parameters | ( | ) |
References working_parameters_.
|
private |
|
private |
Referenced by apply(), set_add_virt_res(), and setup_working_native_pose().
|
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 |
Referenced by apply_bulge_variants(), and set_bulge_res().
|
private |
Referenced by apply(), set_calc_rms_res(), and setup_full_model_info().
|
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 StepWiseProteinPoseSetup().
|
private |
|
private |
Referenced by figure_out_cuts(), and make_pose().
|
private |
|
private |
Referenced by set_disulfide_file(), and setup_disulfides().
|
private |
Referenced by initialize_pose_from_streams(), and set_dump().
|
private |
Referenced by set_extra_minimize_res(), and setup_full_model_info().
|
private |
Referenced by apply(), set_fixed_res(), and setup_full_model_info().
|
private |
Referenced by figure_out_working_sequence_and_mapping(), and initialize_pose_from_streams().
|
private |
Referenced by figure_out_working_sequence_and_mapping(), and StepWiseProteinPoseSetup().
|
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 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().
|
private |
Referenced by add_aa_virt_rsd_as_root(), 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(), make_pose(), reroot_fold_tree(), save_phi_psi_offsets(), setup_constraints(), setup_disulfides(), setup_full_model_info(), setup_secstruct(), which_chain(), and working_parameters().