Rosetta
|
#include <Ubiquitin_E2C_Modeler.hh>
Public Member Functions | |
ubi_e2c_modeler () | |
~ubi_e2c_modeler () override | |
void | set_default () |
void | apply (core::pose::Pose &pose_in) override |
Main Method. More... | |
std::string | get_name () const override |
Each derived class must specify its name. The class name. More... | |
protocols::moves::MoverOP | clone () const override |
Return a clone of the Mover object. More... | |
void | setup_key_residues (const core::pose::Pose &pose_in) |
void | setup_move_maps () |
void | setup_complex_fold_tree (core::pose::Pose &pose_in, bool trim=false) |
void | initial_cter_perturbation (core::pose::Pose &pose_in) |
void | setup_simple_fold_tree (core::Size jumppoint1, core::Size cutpoint, core::Size jumppoint2, core::Size nres, core::pose::Pose &pose_in) |
void | trim_cter (core::pose::Pose &pose_in) |
void | restore_cter (core::pose::Pose &pose_in, core::pose::Pose without_cter) |
void | init_k48r_perturbation (core::pose::Pose &pose_in) |
void | init_d77_perturbation (core::pose::Pose &pose_in) |
core::Real | initial_perturbation (core::pose::Pose &pose_in) |
core::Real | centroid_mode_perturbation (core::pose::Pose &pose_in) |
core::Real | fullatom_mode_perturbation (core::pose::Pose &pose_in) |
void | initial_repack (core::pose::Pose &pose_in) |
void | setup_packer_task (core::pose::Pose &pose_in) |
void | restrict_to_interfacial_loop_packing (core::pose::Pose &pose_in) |
void | set_e2g2_diubi_fold_tree (core::pose::Pose &pose_in) |
core::Real | calc_interaction_energy (const core::pose::Pose &pose_in, bool dimer=true) |
core::Real | CSP_fraction (const core::pose::Pose &pose_in, bool non_CSP=false, bool trim=false, bool swap=false) |
bool | centroid_filter (core::pose::Pose &pose_in) |
bool | fullatom_filter (core::pose::Pose &pose_in) |
core::Real | calc_Lrmsd (const core::pose::Pose &pose_in, const core::pose::Pose &native_pose, core::Size ubiquitin) |
void | evaluate_native (core::pose::Pose &pose_in) |
void | optimize_cov_bond (core::pose::Pose &pose_in) |
![]() | |
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... | |
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::ub_e2c::ubi_e2c_modeler::ubi_e2c_modeler | ( | ) |
References set_default().
|
overridedefault |
|
overridevirtual |
Main Method.
Implements protocols::moves::Mover.
References core::io::raw_data::ScoreMap::add_energies_data_from_scored_pose(), applied_fullatom_pert_, protocols::simple_moves::ReturnSidechainMover::apply(), protocols::simple_moves::SwitchResidueTypeSetMover::apply(), assign_CSPs(), calc_Lrmsd(), core::chemical::CENTROID, centroid_filter(), centroid_mode_perturbation(), cov_bond_only_flag_, core::pose::Pose::data(), e2_d77_jump_, e2_k48r_jump_, core::chemical::FA_STANDARD, flex_cter_, fullatom_filter(), fullatom_mode_perturbation(), lowres_cst_scorefxn_, max_repeats_, monoub_apply(), monoub_mode_, optimize_cov_bond(), pack_cst_scorefxn_, passed_centroid_filter_, passed_fullatom_filter_, refinement_mode_, core::pose::datacache::CacheableDataType::SCORE_MAP, score_map_, setup_key_residues(), setup_move_maps(), protocols::medal::to_centroid(), and protocols::TR().
|
private |
References assign_non_CSPs(), compute_swap_trim_CSPs(), compute_trim_CSPs(), CSP_, core::pose::Pose::pdb_info(), and protocols::TR().
Referenced by apply().
|
private |
References non_CSP_, core::pose::Pose::pdb_info(), and protocols::TR().
Referenced by assign_CSPs().
Real protocols::ub_e2c::ubi_e2c_modeler::calc_interaction_energy | ( | const core::pose::Pose & | pose_in, |
bool | dimer = true |
||
) |
core::Real protocols::ub_e2c::ubi_e2c_modeler::calc_Lrmsd | ( | const core::pose::Pose & | pose_in, |
const core::pose::Pose & | native_pose, | ||
core::Size | ubiquitin | ||
) |
References d77_end_, e2_d77_jump_, e2_end_, e2_k48r_jump_, flex_cter_, core::scoring::is_protein_CA(), k48r_end_, core::scoring::rmsd_no_super_subset(), and core::pose::Pose::size().
Referenced by apply().
bool protocols::ub_e2c::ubi_e2c_modeler::centroid_filter | ( | core::pose::Pose & | pose_in | ) |
References core::scoring::atom_pair_constraint, cen_constraint_, centroid_allowed_CSP_fraction_, CSP_fraction(), dock_lowres_cst_scorefxn_, core::pose::Pose::energies(), fullatom_constraint_cutoff_, max_k48_cter_dist_, score_map_, core::scoring::Energies::total_energies(), and protocols::TR().
Referenced by apply().
Real protocols::ub_e2c::ubi_e2c_modeler::centroid_mode_perturbation | ( | core::pose::Pose & | pose_in | ) |
References CA, centroid_CSP_weight_, centroid_non_CSP_weight_, CSP_fraction(), d77_48_lys_, core::pose::Pose::data(), e2_d77_jump_, e2_k48r_jump_, flex_cter_map_, initial_perturbation(), core::pose::datacache::CacheableDataType::INTERFACE_INFO, k48r_end_, lowres_cst_scorefxn_, protocols::mean_field::max(), max_k48_cter_dist_, protocols::mean_field::min(), min_tolerance_, nb_list_, protocols::simple_moves::bb_sampler::probability, protocols::rigid::random, core::pose::Pose::residue(), core::scoring::rg, protocols::hybridization::score, setup_complex_fold_tree(), temperature_, protocols::TR(), and core::conformation::Residue::xyz().
Referenced by apply().
|
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.
|
private |
References CSP_, CSP_swap_trim_, d77_end_, d77_trim_end_, e2_end_, flex_cter_, k48r_end_, k48r_trim_end_, non_CSP_, non_CSP_swap_trim_, and protocols::TR().
Referenced by assign_CSPs().
|
private |
References CSP_, CSP_trim_, e2_end_, flex_cter_, k48r_end_, non_CSP_, non_CSP_trim_, and protocols::TR().
Referenced by assign_CSPs().
core::Real protocols::ub_e2c::ubi_e2c_modeler::CSP_fraction | ( | const core::pose::Pose & | pose_in, |
bool | non_CSP = false , |
||
bool | trim = false , |
||
bool | swap = false |
||
) |
References protocols::scoring::Interface::calculate(), centroid_non_CSP_weight_, CSP_, CSP_swap_trim_, CSP_trim_, protocols::scoring::Interface::distance(), fullatom_non_CSP_weight_, protocols::scoring::Interface::is_interface(), non_CSP_, non_CSP_swap_trim_, non_CSP_trim_, core::pose::Pose::size(), and core::id::swap().
Referenced by centroid_filter(), centroid_mode_perturbation(), fullatom_filter(), fullatom_mode_perturbation(), init_k48r_perturbation(), monoub_CSP_fraction(), and optimize_cov_bond().
void protocols::ub_e2c::ubi_e2c_modeler::evaluate_native | ( | core::pose::Pose & | pose_in | ) |
References protocols::simple_moves::ReturnSidechainMover::apply(), protocols::simple_moves::SwitchResidueTypeSetMover::apply(), core::chemical::CENTROID, core::scoring::ScoreFunctionFactory::create_score_function(), core::pose::Pose::data(), e2_d77_jump_, e2_k48r_jump_, core::chemical::FA_STANDARD, core::scoring::get_score_function(), core::pose::datacache::CacheableDataType::INTERFACE_INFO, protocols::antibody::design::repack, protocols::hybridization::score, set_e2g2_diubi_fold_tree(), setup_complex_fold_tree(), setup_key_residues(), setup_packer_task(), tf_, protocols::medal::to_centroid(), and protocols::TR().
bool protocols::ub_e2c::ubi_e2c_modeler::fullatom_filter | ( | core::pose::Pose & | pose_in | ) |
References core::scoring::atom_pair_constraint, calc_interaction_energy(), CSP_fraction(), dockfa_cst_scorefxn_, core::pose::Pose::energies(), full_constraint_, fullatom_allowed_CSP_fraction_, fullatom_constraint_cutoff_, max_k48_cter_dist_, refinement_mode_, score_map_, core::scoring::Energies::total_energies(), and protocols::TR().
Referenced by apply().
Real protocols::ub_e2c::ubi_e2c_modeler::fullatom_mode_perturbation | ( | core::pose::Pose & | pose_in | ) |
References all_dof_map_, applied_fullatom_pert_, CA, CSP_fraction(), d77_48_lys_, d77_docking_map_, dockfa_cst_min_scorefxn_, dockfa_cst_scorefxn_, docking_map_, e2_d77_jump_, e2_k48r_jump_, flex_cter_map_, fullatom_CSP_weight_, fullatom_non_CSP_weight_, initial_repack(), k48r_docking_map_, k48r_end_, protocols::mean_field::max(), protocols::mean_field::min(), min_tolerance_, min_type_, nb_list_, pack_scorefxn_, protocols::rigid::partner_downstream, protocols::simple_moves::bb_sampler::probability, protocols::rigid::random, core::pose::Pose::residue(), core::scoring::rg, protocols::hybridization::score, temperature_, tf_, protocols::TR(), and core::conformation::Residue::xyz().
Referenced by apply().
|
overridevirtual |
Each derived class must specify its name. The class name.
Implements protocols::moves::Mover.
void protocols::ub_e2c::ubi_e2c_modeler::init_d77_perturbation | ( | core::pose::Pose & | pose_in | ) |
References core::chemical::CENTROID, core::pose::Pose::copy_segment(), d77_trim_end_, e2_end_, init_k48r_perturbation(), k48r_trim_end_, protocols::medal::to_centroid(), and protocols::TR().
Referenced by initial_perturbation().
void protocols::ub_e2c::ubi_e2c_modeler::init_k48r_perturbation | ( | core::pose::Pose & | pose_in | ) |
References protocols::docking::DockingSlideIntoContact::apply(), protocols::rigid::RigidBodyPerturbMover::apply(), protocols::rigid::RigidBodySpinMover::apply(), core::chemical::CENTROID, centroid_CSP_weight_, centroid_non_CSP_weight_, core::pose::Pose::copy_segment(), CSP_fraction(), d77_trim_ctr_mass_, d77_trim_end_, core::pose::Pose::data(), dock_lowres_scorefxn_, e2_ctr_of_mass_, e2_d77_jump_, e2_end_, e2_k48r_jump_, higher_d77_pert_mode_, core::pose::datacache::CacheableDataType::INTERFACE_INFO, k48r_ctr_of_mass_, k48r_swap_, k48r_trim_end_, protocols::mean_field::max(), protocols::mean_field::min(), protocols::simple_moves::bb_sampler::probability, protocols::rigid::random, core::pose::residue_center_of_mass(), core::scoring::rg, protocols::hybridization::score, setup_complex_fold_tree(), setup_simple_fold_tree(), temperature_, protocols::medal::to_centroid(), and protocols::TR().
Referenced by init_d77_perturbation(), and initial_perturbation().
void protocols::ub_e2c::ubi_e2c_modeler::initial_cter_perturbation | ( | core::pose::Pose & | pose_in | ) |
References core::pose::Pose::conformation(), d77_end_, flex_cter_, core::conformation::idealize_position(), k48r_end_, lowres_cst_scorefxn_, min_tolerance_, nb_list_, core::pose::Pose::set_omega(), core::pose::Pose::set_phi(), core::pose::Pose::set_psi(), setup_complex_fold_tree(), temperature_, and protocols::TR().
Referenced by initial_perturbation().
Real protocols::ub_e2c::ubi_e2c_modeler::initial_perturbation | ( | core::pose::Pose & | pose_in | ) |
References CA, d77_48_lys_, core::pose::Pose::data(), e2_d77_jump_, e2_k48r_jump_, init_d77_perturbation(), init_k48r_perturbation(), initial_cter_perturbation(), core::pose::datacache::CacheableDataType::INTERFACE_INFO, k48r_end_, k48r_swap_, core::pose::Pose::residue(), restore_cter(), core::scoring::rg, protocols::TR(), trim_cter(), and core::conformation::Residue::xyz().
Referenced by centroid_mode_perturbation().
void protocols::ub_e2c::ubi_e2c_modeler::initial_repack | ( | core::pose::Pose & | pose_in | ) |
References pack_scorefxn_, refinement_mode_, setup_packer_task(), temperature_, tf_, and protocols::TR().
Referenced by fullatom_mode_perturbation(), and monoub_fullatom_mode_perturbation().
|
private |
References core::io::raw_data::ScoreMap::add_energies_data_from_scored_pose(), applied_fullatom_pert_, protocols::simple_moves::ReturnSidechainMover::apply(), protocols::simple_moves::SwitchResidueTypeSetMover::apply(), core::chemical::CENTROID, core::pose::Pose::data(), core::chemical::FA_STANDARD, lowres_cst_scorefxn_, max_repeats_, monoub_assign_CSPs(), monoub_calc_Lrmsd(), monoub_centroid_filter(), monoub_centroid_mode_perturbation(), monoub_fullatom_filter(), monoub_fullatom_mode_perturbation(), monoub_setup_key_residues(), monoub_setup_move_maps(), pack_cst_scorefxn_, passed_centroid_filter_, passed_fullatom_filter_, core::pose::datacache::CacheableDataType::SCORE_MAP, score_map_, protocols::medal::to_centroid(), and protocols::TR().
Referenced by apply().
|
private |
References CSP_, core::pose::Pose::pdb_info(), and protocols::TR().
Referenced by monoub_apply().
|
private |
References core::scoring::ScoreFunctionFactory::create_score_function(), core::pose::Pose::is_fullatom(), monoub_fold_tree(), and protocols::TR().
Referenced by monoub_fullatom_filter().
|
private |
References e2_end_, core::scoring::is_protein_CA(), monoub_end_, and core::scoring::rmsd_no_super_subset().
Referenced by monoub_apply().
|
private |
References core::scoring::atom_pair_constraint, cen_constraint_, centroid_allowed_CSP_fraction_, dock_lowres_cst_scorefxn_, core::pose::Pose::energies(), fullatom_constraint_cutoff_, monoub_CSP_fraction(), score_map_, core::scoring::Energies::total_energies(), and protocols::TR().
Referenced by monoub_apply().
|
private |
References centroid_CSP_weight_, core::pose::Pose::data(), core::pose::datacache::CacheableDataType::INTERFACE_INFO, lowres_cst_scorefxn_, protocols::mean_field::max(), protocols::mean_field::min(), min_tolerance_, monoub_CSP_fraction(), monoub_flex_cter_map_, monoub_fold_tree(), monoub_initial_perturbation(), nb_list_, protocols::simple_moves::bb_sampler::probability, protocols::rigid::random, core::scoring::rg, protocols::hybridization::score, temperature_, and protocols::TR().
Referenced by monoub_apply().
|
private |
References protocols::scoring::Interface::calculate(), CSP_, CSP_fraction(), protocols::scoring::Interface::distance(), protocols::scoring::Interface::is_interface(), and core::pose::Pose::size().
Referenced by monoub_centroid_filter(), monoub_centroid_mode_perturbation(), monoub_first_perturbation(), monoub_fullatom_filter(), and monoub_fullatom_mode_perturbation().
|
private |
References core::chemical::CENTROID, centroid_CSP_weight_, core::pose::Pose::data(), core::pose::datacache::CacheableDataType::INTERFACE_INFO, protocols::mean_field::max(), protocols::mean_field::min(), monoub_CSP_fraction(), protocols::simple_moves::bb_sampler::probability, protocols::rigid::random, core::scoring::rg, protocols::hybridization::score, temperature_, protocols::medal::to_centroid(), and protocols::TR().
Referenced by monoub_initial_perturbation().
|
private |
References core::kinematics::FoldTree::add_edge(), core::kinematics::FoldTree::clear(), e2_ctr_of_mass_, e2_end_, core::pose::Pose::fold_tree(), monoub_ctr_of_mass_, monoub_end_, core::kinematics::Edge::PEPTIDE, core::kinematics::FoldTree::reorder(), and protocols::TR().
Referenced by monoub_calc_interaction_energy(), and monoub_centroid_mode_perturbation().
|
private |
References core::scoring::atom_pair_constraint, dockfa_cst_scorefxn_, core::pose::Pose::energies(), full_constraint_, fullatom_allowed_CSP_fraction_, fullatom_constraint_cutoff_, monoub_calc_interaction_energy(), monoub_CSP_fraction(), refinement_mode_, score_map_, core::scoring::Energies::total_energies(), and protocols::TR().
Referenced by monoub_apply().
|
private |
References applied_fullatom_pert_, dockfa_cst_min_scorefxn_, dockfa_cst_scorefxn_, fullatom_CSP_weight_, initial_repack(), protocols::mean_field::max(), protocols::mean_field::min(), min_tolerance_, min_type_, monoub_all_dof_map_, monoub_CSP_fraction(), monoub_docking_map_, monoub_flex_cter_map_, nb_list_, pack_scorefxn_, protocols::rigid::partner_downstream, protocols::simple_moves::bb_sampler::probability, protocols::rigid::random, core::scoring::rg, protocols::hybridization::score, temperature_, tf_, and protocols::TR().
Referenced by monoub_apply().
|
private |
References core::pose::Pose::conformation(), flex_cter_, core::conformation::idealize_position(), lowres_cst_scorefxn_, min_tolerance_, monoub_end_, nb_list_, core::pose::Pose::set_omega(), core::pose::Pose::set_phi(), core::pose::Pose::set_psi(), temperature_, and protocols::TR().
Referenced by monoub_initial_perturbation().
|
private |
|
private |
References e2_ctr_of_mass_, e2_end_, monoub_ctr_of_mass_, monoub_end_, core::pose::Pose::pdb_info(), core::pose::residue_center_of_mass(), core::pose::Pose::size(), and protocols::TR().
Referenced by monoub_apply().
|
private |
References flex_cter_, init_all_dof_map_, init_monoub_all_dof_map_, init_monoub_docking_map_, init_monoub_flex_cter_map_, monoub_all_dof_map_, monoub_docking_map_, monoub_end_, monoub_flex_cter_map_, and protocols::TR().
Referenced by monoub_apply().
void protocols::ub_e2c::ubi_e2c_modeler::optimize_cov_bond | ( | core::pose::Pose & | pose_in | ) |
References applied_fullatom_pert_, core::scoring::atom_pair_constraint, CA, CSP_fraction(), d77_48_lys_, core::pose::Pose::data(), dockfa_cst_min_scorefxn_, dockfa_cst_scorefxn_, e2_d77_jump_, e2_k48r_jump_, flex_cter_map_, full_constraint_, fullatom_CSP_weight_, fullatom_non_CSP_weight_, core::pose::datacache::CacheableDataType::INTERFACE_INFO, k48r_end_, protocols::mean_field::max(), protocols::mean_field::min(), min_tolerance_, min_type_, nb_list_, pack_cst_scorefxn_, protocols::simple_moves::bb_sampler::probability, protocols::rigid::random, core::pose::Pose::residue(), core::scoring::rg, protocols::hybridization::score, score_map_, setup_complex_fold_tree(), setup_packer_task(), temperature_, tf_, protocols::TR(), and core::conformation::Residue::xyz().
Referenced by apply().
void protocols::ub_e2c::ubi_e2c_modeler::restore_cter | ( | core::pose::Pose & | pose_in, |
core::pose::Pose | without_cter | ||
) |
References core::chemical::CENTROID, core::pose::Pose::conformation(), core::pose::Pose::copy_segment(), d77_end_, d77_trim_end_, e2_end_, flex_cter_, k48r_end_, k48r_trim_end_, core::pose::Pose::residue(), core::conformation::Conformation::safely_append_polymer_residue_after_seqpos(), setup_complex_fold_tree(), protocols::medal::to_centroid(), and protocols::TR().
Referenced by initial_perturbation().
void protocols::ub_e2c::ubi_e2c_modeler::restrict_to_interfacial_loop_packing | ( | core::pose::Pose & | pose_in | ) |
References d77_end_, e2_d77_jump_, e2_k48r_jump_, flex_cter_, k48r_end_, core::pose::Pose::size(), tf_, and protocols::TR().
void protocols::ub_e2c::ubi_e2c_modeler::set_default | ( | ) |
References applied_fullatom_pert_, core::scoring::atom_pair_constraint, core::scoring::cbeta, cen_constraint_, cen_vdw_, cov_bond_only_flag_, core::scoring::ScoreFunctionFactory::create_score_function(), d77_48_lys_, d77_75g_mtsl_, d77_ctr_of_mass_, d77_end_, d77_trim_ctr_mass_, d77_trim_end_, dock_lowres_cst_scorefxn_, dock_lowres_scorefxn_, dockfa_cst_min_scorefxn_, dockfa_cst_scorefxn_, dockfa_min_scorefxn_, dockfa_scorefxn_, e2_ctr_of_mass_, e2_end_, full_constraint_, fullatom_constraint_cutoff_, core::scoring::get_score_function(), core::scoring::get_score_function_legacy(), core::scoring::interchain_contact, core::scoring::interchain_vdw, k48r_48_lys_, k48r_48k_mtsl_, k48r_ctr_of_mass_, k48r_end_, k48r_swap_, k48r_trim_end_, lowres_cst_scorefxn_, lowres_scorefxn_, min_tolerance_, min_type_, monoub_mode_, nb_list_, output_cen_scorefxn_, output_full_scorefxn_, pack_cst_scorefxn_, pack_scorefxn_, passed_centroid_filter_, passed_fullatom_filter_, protocols::TR(), and core::scoring::vdw.
Referenced by ubi_e2c_modeler().
void protocols::ub_e2c::ubi_e2c_modeler::set_e2g2_diubi_fold_tree | ( | core::pose::Pose & | pose_in | ) |
References core::kinematics::FoldTree::add_edge(), core::kinematics::FoldTree::clear(), d77_end_, e2_ctr_of_mass_, e2_end_, core::pose::Pose::fold_tree(), core::kinematics::Edge::PEPTIDE, core::kinematics::FoldTree::reorder(), core::pose::residue_center_of_mass(), and protocols::TR().
Referenced by calc_interaction_energy(), and evaluate_native().
void protocols::ub_e2c::ubi_e2c_modeler::setup_complex_fold_tree | ( | core::pose::Pose & | pose_in, |
bool | trim = false |
||
) |
References core::kinematics::FoldTree::add_edge(), core::kinematics::FoldTree::clear(), d77_ctr_of_mass_, d77_end_, e2_ctr_of_mass_, e2_d77_jump_, e2_end_, e2_k48r_jump_, flex_cter_, core::pose::Pose::fold_tree(), k48r_ctr_of_mass_, k48r_end_, core::kinematics::Edge::PEPTIDE, core::kinematics::FoldTree::reorder(), and protocols::TR().
Referenced by calc_interaction_energy(), centroid_mode_perturbation(), evaluate_native(), init_k48r_perturbation(), initial_cter_perturbation(), optimize_cov_bond(), and restore_cter().
void protocols::ub_e2c::ubi_e2c_modeler::setup_key_residues | ( | const core::pose::Pose & | pose_in | ) |
References d77_48_lys_, d77_75g_mtsl_, d77_ctr_of_mass_, d77_end_, d77_trim_ctr_mass_, d77_trim_end_, e2_ctr_of_mass_, e2_end_, k48r_48_lys_, k48r_48k_mtsl_, k48r_ctr_of_mass_, k48r_end_, k48r_trim_end_, core::pose::Pose::pdb_info(), core::pose::residue_center_of_mass(), core::pose::Pose::size(), and protocols::TR().
Referenced by apply(), and evaluate_native().
void protocols::ub_e2c::ubi_e2c_modeler::setup_move_maps | ( | ) |
References all_dof_map_, cov_bond_only_flag_, d77_docking_map_, d77_end_, docking_map_, e2_d77_jump_, e2_k48r_jump_, flex_cter_, flex_cter_map_, init_all_dof_map_, init_d77_docking_map_, init_docking_map_, init_flex_cter_map_, init_k48r_docking_map_, k48r_docking_map_, k48r_end_, and protocols::TR().
Referenced by apply().
void protocols::ub_e2c::ubi_e2c_modeler::setup_packer_task | ( | core::pose::Pose & | pose_in | ) |
References init_task_factory_, core::pack::dunbrack::load_unboundrot(), tf_, and protocols::TR().
Referenced by evaluate_native(), initial_repack(), and optimize_cov_bond().
void protocols::ub_e2c::ubi_e2c_modeler::setup_simple_fold_tree | ( | core::Size | jumppoint1, |
core::Size | cutpoint, | ||
core::Size | jumppoint2, | ||
core::Size | nres, | ||
core::pose::Pose & | pose_in | ||
) |
void protocols::ub_e2c::ubi_e2c_modeler::trim_cter | ( | core::pose::Pose & | pose_in | ) |
References d77_ctr_of_mass_, d77_end_, d77_trim_ctr_mass_, d77_trim_end_, core::pose::Pose::delete_polymer_residue(), flex_cter_, k48r_end_, k48r_trim_end_, core::pose::Pose::size(), and protocols::TR().
Referenced by initial_perturbation().
|
private |
Referenced by fullatom_mode_perturbation(), and setup_move_maps().
|
private |
Referenced by apply(), fullatom_mode_perturbation(), monoub_apply(), monoub_fullatom_mode_perturbation(), optimize_cov_bond(), and set_default().
|
private |
Referenced by centroid_mode_perturbation(), fullatom_mode_perturbation(), initial_perturbation(), and optimize_cov_bond().
|
private |
Referenced by centroid_filter(), monoub_centroid_filter(), and set_default().
|
private |
Referenced by set_default().
|
private |
Referenced by centroid_filter(), and monoub_centroid_filter().
|
private |
|
private |
Referenced by centroid_mode_perturbation(), CSP_fraction(), and init_k48r_perturbation().
|
private |
Referenced by apply(), set_default(), and setup_move_maps().
|
private |
Referenced by assign_CSPs(), compute_swap_trim_CSPs(), compute_trim_CSPs(), CSP_fraction(), monoub_assign_CSPs(), and monoub_CSP_fraction().
|
private |
Referenced by compute_swap_trim_CSPs(), and CSP_fraction().
|
private |
Referenced by compute_trim_CSPs(), and CSP_fraction().
|
private |
|
private |
Referenced by set_default(), and setup_key_residues().
|
private |
Referenced by set_default(), setup_complex_fold_tree(), setup_key_residues(), and trim_cter().
|
private |
Referenced by fullatom_mode_perturbation(), and setup_move_maps().
|
private |
|
private |
Referenced by init_k48r_perturbation(), set_default(), setup_key_residues(), and trim_cter().
|
private |
|
private |
Referenced by centroid_filter(), monoub_centroid_filter(), and set_default().
|
private |
Referenced by init_k48r_perturbation(), and set_default().
|
private |
Referenced by fullatom_mode_perturbation(), monoub_fullatom_mode_perturbation(), optimize_cov_bond(), and set_default().
|
private |
|
private |
Referenced by set_default().
|
private |
Referenced by set_default().
|
private |
Referenced by fullatom_mode_perturbation(), and setup_move_maps().
|
private |
|
private |
Referenced by apply(), calc_interaction_energy(), calc_Lrmsd(), centroid_mode_perturbation(), evaluate_native(), fullatom_mode_perturbation(), init_k48r_perturbation(), initial_perturbation(), optimize_cov_bond(), restrict_to_interfacial_loop_packing(), setup_complex_fold_tree(), and setup_move_maps().
|
private |
Referenced by calc_Lrmsd(), compute_swap_trim_CSPs(), compute_trim_CSPs(), init_d77_perturbation(), init_k48r_perturbation(), monoub_calc_Lrmsd(), monoub_fold_tree(), monoub_setup_key_residues(), restore_cter(), set_default(), set_e2g2_diubi_fold_tree(), setup_complex_fold_tree(), and setup_key_residues().
|
private |
Referenced by apply(), calc_interaction_energy(), calc_Lrmsd(), centroid_mode_perturbation(), evaluate_native(), fullatom_mode_perturbation(), init_k48r_perturbation(), initial_perturbation(), optimize_cov_bond(), restrict_to_interfacial_loop_packing(), setup_complex_fold_tree(), setup_move_maps(), and setup_simple_fold_tree().
|
private |
|
private |
Referenced by centroid_mode_perturbation(), fullatom_mode_perturbation(), optimize_cov_bond(), and setup_move_maps().
|
private |
Referenced by fullatom_filter(), monoub_fullatom_filter(), optimize_cov_bond(), and set_default().
|
private |
Referenced by fullatom_filter(), and monoub_fullatom_filter().
|
private |
Referenced by centroid_filter(), fullatom_filter(), monoub_centroid_filter(), monoub_fullatom_filter(), and set_default().
|
private |
Referenced by fullatom_mode_perturbation(), monoub_fullatom_mode_perturbation(), and optimize_cov_bond().
|
private |
Referenced by CSP_fraction(), fullatom_mode_perturbation(), and optimize_cov_bond().
|
private |
Referenced by init_k48r_perturbation().
|
private |
Referenced by monoub_setup_move_maps(), and setup_move_maps().
|
private |
Referenced by setup_move_maps().
|
private |
Referenced by setup_move_maps().
|
private |
Referenced by setup_move_maps().
|
private |
Referenced by setup_move_maps().
|
private |
Referenced by monoub_setup_move_maps().
|
private |
Referenced by monoub_setup_move_maps().
|
private |
Referenced by monoub_setup_move_maps().
|
private |
Referenced by setup_packer_task().
|
private |
Referenced by set_default(), and setup_key_residues().
|
private |
Referenced by set_default(), and setup_key_residues().
|
private |
Referenced by init_k48r_perturbation(), set_default(), setup_complex_fold_tree(), and setup_key_residues().
|
private |
Referenced by fullatom_mode_perturbation(), and setup_move_maps().
|
private |
Referenced by calc_Lrmsd(), centroid_mode_perturbation(), compute_swap_trim_CSPs(), compute_trim_CSPs(), fullatom_mode_perturbation(), initial_cter_perturbation(), initial_perturbation(), optimize_cov_bond(), restore_cter(), restrict_to_interfacial_loop_packing(), set_default(), setup_complex_fold_tree(), setup_key_residues(), setup_move_maps(), and trim_cter().
|
private |
Referenced by init_k48r_perturbation(), initial_perturbation(), and set_default().
|
private |
|
private |
|
private |
Referenced by set_default().
|
private |
Referenced by centroid_filter(), centroid_mode_perturbation(), and fullatom_filter().
|
private |
Referenced by apply(), and monoub_apply().
|
private |
|
private |
Referenced by fullatom_mode_perturbation(), monoub_fullatom_mode_perturbation(), optimize_cov_bond(), and set_default().
|
private |
Referenced by monoub_fullatom_mode_perturbation(), and monoub_setup_move_maps().
|
private |
Referenced by monoub_fold_tree(), and monoub_setup_key_residues().
|
private |
Referenced by monoub_fullatom_mode_perturbation(), and monoub_setup_move_maps().
|
private |
|
private |
|
private |
Referenced by apply(), and set_default().
|
private |
|
private |
Referenced by assign_non_CSPs(), compute_swap_trim_CSPs(), compute_trim_CSPs(), and CSP_fraction().
|
private |
Referenced by compute_swap_trim_CSPs(), and CSP_fraction().
|
private |
Referenced by compute_trim_CSPs(), and CSP_fraction().
|
private |
Referenced by set_default().
|
private |
Referenced by set_default().
|
private |
Referenced by apply(), monoub_apply(), optimize_cov_bond(), and set_default().
|
private |
Referenced by fullatom_mode_perturbation(), initial_repack(), monoub_fullatom_mode_perturbation(), and set_default().
|
private |
Referenced by apply(), monoub_apply(), and set_default().
|
private |
Referenced by apply(), monoub_apply(), and set_default().
|
private |
Referenced by apply(), fullatom_filter(), initial_repack(), and monoub_fullatom_filter().
|
private |
Referenced by apply(), centroid_filter(), fullatom_filter(), monoub_apply(), monoub_centroid_filter(), monoub_fullatom_filter(), and optimize_cov_bond().
|
private |
Referenced by centroid_mode_perturbation(), fullatom_mode_perturbation(), init_k48r_perturbation(), initial_cter_perturbation(), initial_repack(), monoub_centroid_mode_perturbation(), monoub_first_perturbation(), monoub_fullatom_mode_perturbation(), monoub_initial_cter_perturbation(), and optimize_cov_bond().
|
private |