Rosetta 3.5
|
A mover class for performing kinematic loop closure on a peptide segment . More...
#include <KinematicMover.hh>
Public Member Functions | |
KinematicMover () | |
~KinematicMover () | |
virtual std::string | get_name () const |
Each derived class must specify its name. The class name. More... | |
void | set_vary_bondangles (bool vary) |
bool | get_vary_bondangles () |
void | set_sample_nonpivot_torsions (bool sample) |
bool | get_sample_nonpivot_torsions () |
Size | start_res () const |
Size | middle_res () const |
Size | end_res () const |
Size | segment_length () const |
Size | loop_begin () const |
Size | loop_end () const |
core::Real | BANGLE_MIN () const |
core::Real | BANGLE_SD () const |
void | set_sweep_nonpivot_torsions (bool sweep) |
void | set_nonpivot_res_to_sweep (utility::vector1< Size > const &resids) |
void | set_nonpivot_bb_torsion_id (utility::vector1< Size > const &bbtorids) |
void | set_sweep_start_angle (utility::vector1< core::Real > const &angles_in_degrees) |
void | set_sweep_step_size (utility::vector1< core::Real > const &angle_steps_in_degrees) |
void | set_sweep_nsteps (utility::vector1< Size > const &nsteps) |
bool | sweep_incomplete () const |
void | set_filters (utility::vector1< protocols::filters::FilterCOP > const &filters_in) |
void | add_filter (protocols::filters::FilterCOP filter) |
void | clear_filters () |
virtual void | set_rama_check (bool do_rama_check) |
virtual bool | get_rama_check () |
virtual void | set_hardsphere_bump_check (bool do_bump_check) |
virtual void | set_do_sfxn_eval_every_iteration (bool do_sfxn_eval) |
virtual bool | get_hardsphere_bump_check () |
virtual void | set_pivots (Size start_res, Size middle_res, Size end_res) |
virtual void | apply (core::pose::Pose &) |
virtual void | set_idealize_loop_first (bool idealize) |
virtual bool | get_idealize_loop_first () |
void | set_temperature (core::Real temp_in) |
void | set_sfxn (core::scoring::ScoreFunctionCOP sfxn_in) |
void | set_loop_begin_and_end (Size loop_begin, Size loop_end) |
bool | check_rama (core::Real old_rama_score, core::Real new_rama_score) |
bool | last_move_succeeded () |
void | set_perturber (KinematicPerturberOP perturber_in) |
core::Real | get_bump_overlap_factor () const |
void | set_bump_overlap_factor (core::Real bump_overlap_factor) |
void | update_sequence (utility::vector1< core::chemical::AA > const &sequence) |
Taboo Sampling functions. More... | |
void | insert_sampled_torsion_string_into_taboo_map (std::string const &ts) |
bool | is_in_taboo_map (std::string const &ts) const |
utility::vector1 < core::chemical::AA > | get_loop_sequence () const |
std::string | torsion_features_string (core::pose::Pose const &pose) const |
bin torsion angles as described in http://www.ncbi.nlm.nih.gov/pubmed/19646450 generates a string with the torsion angle bins, using uppercase letters as in the publication above for omega ~ 180, and lowercase letters for omega ~ 0; to be used in loop sampling analysis – same as in the LoopMover implementation... More... | |
core::Real | frequency_in_taboo_map (core::Size const &pos, char const &torsion_bin) const |
returns the frequency of torsion_bin at position pos in the current taboo map, used for shifting probabilities of sampled torsion bins in later rounds More... | |
![]() | |
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 |
Private Member Functions | |
bool | perform_rama_check (core::pose::Pose const &pose, utility::vector1< core::Real > const &t_ang, utility::vector1< Size > const &pivots, Size const start_res, Size const seg_len) |
bool | perform_rama_check (core::pose::Pose const &pose, utility::vector1< core::Real > const &t_ang, utility::vector1< Size > const &pivots, Size const start_res, Size const middle_res, Size const end_res) |
bool | perform_bump_check (core::pose::Pose const &pose, Size const start_res, Size const end_res) |
void | set_defaults () |
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... | |
A mover class for performing kinematic loop closure on a peptide segment .
protocols::loops::loop_closure::kinematic_closure::KinematicMover::KinematicMover | ( | ) |
References perturber_, and set_defaults().
protocols::loops::loop_closure::kinematic_closure::KinematicMover::~KinematicMover | ( | ) |
|
inline |
References filters_.
|
virtual |
Implements protocols::moves::Mover.
References core::conformation::Conformation::append_residue_by_bond(), core::id::BB, core::conformation::Residue::clone(), core::pose::Pose::conformation(), do_hardsphere_bump_check_, do_sfxn_eval_every_iteration_, end_res_, filters_, idealize_loop_first_, core::conformation::idealize_position(), idl_C_N_, idl_C_N_CA_, idl_CA_C_, idl_CA_C_N_, idl_N_CA_, idl_N_CA_C_, insert_sampled_torsion_string_into_taboo_map(), core::conformation::Residue::is_lower_terminus(), core::conformation::Residue::is_upper_terminus(), last_move_succeeded_, middle_res_, OMEGA_MEAN_, protocols::forge::methods::order(), perform_bump_check(), perform_rama_check(), perturber_, core::conformation::Conformation::replace_residue(), core::conformation::Conformation::residue(), core::pose::Pose::residue(), protocols::loops::loop_closure::kinematic_closure::RG(), core::conformation::symmetry::RG(), core::conformation::Conformation::safely_append_polymer_residue_after_seqpos(), core::conformation::Conformation::safely_prepend_polymer_residue_before_seqpos(), core::pose::Pose::set_omega(), core::conformation::Conformation::set_torsion(), start_res_, torsion_features_string(), protocols::loops::loop_closure::kinematic_closure::TR(), core::conformation::Residue::type(), and core::conformation::Residue::xyz().
|
inline |
References BANGLE_MIN_.
|
inline |
References BANGLE_SD_.
bool protocols::loops::loop_closure::kinematic_closure::KinematicMover::check_rama | ( | core::Real | old_rama_score, |
core::Real | new_rama_score | ||
) |
References protocols::loops::loop_closure::kinematic_closure::RG(), and temperature_.
Referenced by perform_rama_check().
|
inline |
References filters_.
|
inline |
References end_res_.
Referenced by perform_bump_check(), and set_pivots().
core::Real protocols::loops::loop_closure::kinematic_closure::KinematicMover::frequency_in_taboo_map | ( | core::Size const & | pos, |
char const & | torsion_bin | ||
) | const |
returns the frequency of torsion_bin at position pos in the current taboo map, used for shifting probabilities of sampled torsion bins in later rounds
References sequence_, taboo_map_, and protocols::loops::loop_closure::kinematic_closure::TR().
|
inline |
References bump_overlap_factor_.
|
virtual |
References do_hardsphere_bump_check_.
|
virtual |
References idealize_loop_first_.
utility::vector1< core::chemical::AA > protocols::loops::loop_closure::kinematic_closure::KinematicMover::get_loop_sequence | ( | ) | const |
References sequence_.
|
virtual |
Each derived class must specify its name. The class name.
Implements protocols::moves::Mover.
|
virtual |
References do_rama_check_.
bool protocols::loops::loop_closure::kinematic_closure::KinematicMover::get_sample_nonpivot_torsions | ( | ) |
References sample_nonpivot_torsions_.
bool protocols::loops::loop_closure::kinematic_closure::KinematicMover::get_vary_bondangles | ( | ) |
References vary_bond_angles_.
void protocols::loops::loop_closure::kinematic_closure::KinematicMover::insert_sampled_torsion_string_into_taboo_map | ( | std::string const & | ts) |
References sequence_, taboo_map_, taboo_map_max_capacity_, and protocols::loops::loop_closure::kinematic_closure::TR().
Referenced by apply().
bool protocols::loops::loop_closure::kinematic_closure::KinematicMover::is_in_taboo_map | ( | std::string const & | ts) | const |
References taboo_map_.
bool protocols::loops::loop_closure::kinematic_closure::KinematicMover::last_move_succeeded | ( | ) |
References last_move_succeeded_.
|
inline |
References loop_begin_.
Referenced by set_loop_begin_and_end().
|
inline |
References loop_end_.
Referenced by set_loop_begin_and_end().
|
inline |
References middle_res_.
Referenced by set_pivots().
|
private |
References core::conformation::Residue::atom_type(), bump_overlap_factor_, core::pose::Pose::conformation(), end_res(), core::conformation::Residue::is_protein(), core::chemical::AtomType::lj_radius(), core::conformation::Residue::nbr_atom(), core::conformation::Residue::nbr_radius(), core::conformation::Residue::nheavyatoms(), core::conformation::Conformation::residue(), core::pose::Pose::total_residue(), and core::conformation::Residue::xyz().
Referenced by apply().
|
private |
|
private |
|
inline |
References seg_len_.
|
inline |
References bump_overlap_factor_.
|
private |
Referenced by KinematicMover().
|
virtual |
References do_sfxn_eval_every_iteration_.
|
inline |
References filters_.
|
virtual |
References do_hardsphere_bump_check_.
|
virtual |
References idealize_loop_first_.
void protocols::loops::loop_closure::kinematic_closure::KinematicMover::set_loop_begin_and_end | ( | Size | loop_begin, |
Size | loop_end | ||
) |
References loop_begin(), loop_begin_, loop_end(), and loop_end_.
void protocols::loops::loop_closure::kinematic_closure::KinematicMover::set_nonpivot_bb_torsion_id | ( | utility::vector1< Size > const & | bbtorids) |
References nonpivot_res_to_sweep_, and sweep_torsion_ids_.
void protocols::loops::loop_closure::kinematic_closure::KinematicMover::set_nonpivot_res_to_sweep | ( | utility::vector1< Size > const & | resids) |
This must be set before the other properties (torsion angles, starting angles, step sizes, nsteps) are set.
References nonpivot_res_to_sweep_.
void protocols::loops::loop_closure::kinematic_closure::KinematicMover::set_perturber | ( | KinematicPerturberOP | perturber_in) |
References perturber_.
|
virtual |
References end_res(), end_res_, middle_res(), middle_res_, seg_len_, start_res(), and start_res_.
|
virtual |
References do_rama_check_.
void protocols::loops::loop_closure::kinematic_closure::KinematicMover::set_sample_nonpivot_torsions | ( | bool | sample) |
References sample_nonpivot_torsions_.
void protocols::loops::loop_closure::kinematic_closure::KinematicMover::set_sfxn | ( | core::scoring::ScoreFunctionCOP | sfxn_in) |
References sfxn_.
void protocols::loops::loop_closure::kinematic_closure::KinematicMover::set_sweep_nonpivot_torsions | ( | bool | sweep) |
References sweep_nonpivot_torsion_.
void protocols::loops::loop_closure::kinematic_closure::KinematicMover::set_sweep_nsteps | ( | utility::vector1< Size > const & | nsteps) |
Initializes the LexicographicalIterator
References nonpivot_res_to_sweep_, and sweep_iterator_.
void protocols::loops::loop_closure::kinematic_closure::KinematicMover::set_sweep_start_angle | ( | utility::vector1< core::Real > const & | angles_in_degrees) |
References nonpivot_res_to_sweep_, and sweep_nonpivot_torsion_starts_.
void protocols::loops::loop_closure::kinematic_closure::KinematicMover::set_sweep_step_size | ( | utility::vector1< core::Real > const & | angle_steps_in_degrees) |
References nonpivot_res_to_sweep_, and sweep_step_sizes_.
void protocols::loops::loop_closure::kinematic_closure::KinematicMover::set_temperature | ( | core::Real | temp_in) |
References temperature_.
void protocols::loops::loop_closure::kinematic_closure::KinematicMover::set_vary_bondangles | ( | bool | vary) |
References vary_bond_angles_.
|
inline |
References start_res_.
Referenced by set_pivots().
bool protocols::loops::loop_closure::kinematic_closure::KinematicMover::sweep_incomplete | ( | ) | const |
returns true as long as the Lexicographical iterator has not covered all angles – useful in a while-loop.
References sweep_iterator_.
std::string protocols::loops::loop_closure::kinematic_closure::KinematicMover::torsion_features_string | ( | core::pose::Pose const & | pose) | const |
bin torsion angles as described in http://www.ncbi.nlm.nih.gov/pubmed/19646450 generates a string with the torsion angle bins, using uppercase letters as in the publication above for omega ~ 180, and lowercase letters for omega ~ 0; to be used in loop sampling analysis – same as in the LoopMover implementation...
References core::conformation::get_torsion_bin(), loop_begin_, loop_end_, core::pose::Pose::omega(), core::pose::Pose::phi(), and core::pose::Pose::psi().
Referenced by apply().
void protocols::loops::loop_closure::kinematic_closure::KinematicMover::update_sequence | ( | utility::vector1< core::chemical::AA > const & | sequence) |
Taboo Sampling functions.
References perturber_, sequence_, taboo_map_, and taboo_master_map_.
|
private |
|
private |
|
private |
Referenced by BANGLE_MIN().
|
private |
Referenced by BANGLE_SD().
|
private |
Referenced by get_bump_overlap_factor(), perform_bump_check(), and set_bump_overlap_factor().
|
private |
Referenced by apply(), get_hardsphere_bump_check(), and set_hardsphere_bump_check().
|
private |
Referenced by get_rama_check(), and set_rama_check().
|
private |
Referenced by apply(), and set_do_sfxn_eval_every_iteration().
|
private |
Referenced by apply(), end_res(), and set_pivots().
|
private |
Referenced by add_filter(), apply(), clear_filters(), and set_filters().
|
private |
Referenced by apply(), get_idealize_loop_first(), and set_idealize_loop_first().
|
private |
Referenced by apply().
|
private |
Referenced by apply().
|
private |
Referenced by apply().
|
private |
Referenced by apply().
|
private |
Referenced by apply().
|
private |
Referenced by apply().
|
private |
Referenced by apply(), and last_move_succeeded().
|
private |
Referenced by loop_begin(), set_loop_begin_and_end(), and torsion_features_string().
|
private |
Referenced by loop_end(), set_loop_begin_and_end(), and torsion_features_string().
|
private |
|
private |
Referenced by apply(), middle_res(), and set_pivots().
|
private |
|
private |
Referenced by apply().
|
private |
|
private |
Referenced by apply(), KinematicMover(), set_perturber(), and update_sequence().
|
private |
Referenced by get_sample_nonpivot_torsions(), and set_sample_nonpivot_torsions().
|
private |
Referenced by segment_length(), and set_pivots().
|
private |
|
private |
Referenced by set_sfxn().
|
private |
Referenced by apply(), set_pivots(), and start_res().
|
private |
Referenced by set_sweep_nsteps(), and sweep_incomplete().
|
private |
Referenced by set_sweep_nonpivot_torsions().
|
private |
Referenced by set_sweep_start_angle().
|
private |
Referenced by set_sweep_step_size().
|
private |
Referenced by set_nonpivot_bb_torsion_id().
|
private |
|
private |
Referenced by insert_sampled_torsion_string_into_taboo_map().
|
private |
Referenced by update_sequence().
|
private |
Referenced by check_rama(), and set_temperature().
|
private |
Referenced by get_vary_bondangles(), and set_vary_bondangles().