![]() |
Rosetta
2021.16
|
class for non-discrete side chain sampling using Dunbrack rotamer probabilities/distributions More...
#include <SidechainMover.hh>

Public Member Functions | |
| SidechainMover () | |
| default constructor More... | |
| SidechainMover (core::pack::dunbrack::RotamerLibrary const &rotamer_library) | |
| constructor with user provided rotamer library More... | |
| SidechainMover (SidechainMover const &mover) | |
| ~SidechainMover () override | |
| protocols::moves::MoverOP | clone () const override |
| Return a clone of the Mover object. More... | |
| void | parse_my_tag (utility::tag::TagCOP tag, basic::datacache::DataMap &data) override |
| Called by MoverFactory when constructing new Movers. Takes care of the specific mover's parsing. More... | |
| void | init_task (core::pose::Pose const &pose) |
| initialize the packer task if necessary More... | |
| void | initialize_simulation (core::pose::Pose &pose, protocols::canonical_sampling::MetropolisHastingsMover const &metropolis_hastings_mover, core::Size cycle) override |
| Callback executed before any Monte Carlo trials are attempted. More... | |
| core::conformation::ResidueOP | make_move (core::conformation::ResidueOP res, core::pose::Pose const &pose) |
| bool | task_initialized () |
| void | apply (core::pose::Pose &pose) override |
| apply a sidechain move to a Pose object More... | |
| core::Real | proposal_density (core::conformation::Residue const &proposed_residue, core::Size const proposed_resnum, core::chemical::ResidueType const &initial_residue_type, utility::vector1< core::Real > const &initial_chi_angles) const |
| void | test_move (core::pose::Pose &) override |
| test the backrub move More... | |
| void | idealize_sidechains (core::pose::Pose &pose) |
| idealize sidechains that might be altered More... | |
| core::pack::dunbrack::RotamerLibrary const & | rotamer_library () const |
| get the rotamer library More... | |
| core::pack::task::TaskFactoryCOP | task_factory () const |
| get the task factory More... | |
| void | set_task_factory (core::pack::task::TaskFactoryCOP task_factory) |
| set the task factory More... | |
| core::pack::task::PackerTaskCOP | task () const |
| get the packer task More... | |
| void | set_task (core::pack::task::PackerTaskCOP task) |
| set the task More... | |
| core::Real | prob_uniform () const |
| get the probability of uniformly sampling chi angles More... | |
| void | set_prob_uniform (core::Real prob_uniform) |
| set the probability of uniformly sampling chi angles More... | |
| bool | preserve_detailed_balance () const override |
| get whether detailed balance is preserved (i.e. proposal density ratio calculated) More... | |
| void | set_preserve_detailed_balance (bool preserve_detailed_balance) override |
| set whether detailed balance is preserved (i.e. proposal density ratio calculated) More... | |
| bool | change_chi_without_replacing_residue () const |
| perform direct chi manipulations rather than using replace_residue to effect rotamer changes; useful if things are kinematically dependent on a sidechain. More... | |
| void | set_change_chi_without_replacing_residue (bool const change_chi_without_replacing_residue) |
| perform direct chi manipulations rather than using replace_residue to effect rotamer changes; useful if things are kinematically dependent on a sidechain. More... | |
| utility::vector1 < core::id::TorsionID_Range > | torsion_id_ranges (core::pose::Pose &pose) override |
| get the TorsionIDs perturbed by the mover during moves, along with their ranges More... | |
| utility::vector1 < core::id::DOF_ID_Range > | dof_id_ranges (core::pose::Pose &pose) override |
| get the DOF_IDs perturbed by the mover during moves, along with their ranges More... | |
| core::Real | prob_withinrot () const |
| get the probability of sampling within the same rotamer More... | |
| void | set_prob_withinrot (core::Real prob_withinrot) |
| set the probability of sampling within the same rotamer More... | |
| core::Real | prob_random_pert_current () const |
| void | set_prob_random_pert_current (core::Real prob_pert) |
| utility::vector1< core::Size > const & | packed_residues () const |
| get the residues that can be changed by this mover More... | |
| utility::vector1< bool > const & | residue_packed () const |
| get a vector indicating whether each residue can be packed More... | |
| core::Size | next_resnum () const |
| get the next residue to be changed, 0 means a random will be chosen More... | |
| void | next_resnum (core::Size resnum) |
| set the next residue to be changed, 0 means a random will be chosen More... | |
| core::Size | last_nchi () const |
| get the number of chi angles sampled in the last move More... | |
| bool | last_mutation () const |
| get whether the last move mutated the residue More... | |
| bool | last_uniform () const |
| get whether the last move used uniform chi sampling More... | |
| bool | last_withinrot () const |
| get whether the last move sampled within the same rotamer More... | |
| core::Real | last_proposal_density_ratio () override |
| get the ratio of proposal densities for the last move More... | |
| void | update_type () |
| update string describing the move type More... | |
| void | set_sampling_temperature (core::Real temp) |
| set temperature for bias sampling at dunbrack distribution More... | |
| core::Real | sampling_temperature () |
| std::string | get_name () const override |
| Each derived class must specify its name. The class name. More... | |
Public Member Functions inherited from protocols::canonical_sampling::ThermodynamicMover | |
| ThermodynamicMover () | |
| Default constructor. More... | |
| ~ThermodynamicMover () override | |
| Default destructor. More... | |
| virtual void | observe_after_metropolis (protocols::canonical_sampling::MetropolisHastingsMover const &metropolis_hastings_mover) |
| Callback executed after the Metropolis criterion is evaluated. More... | |
| virtual void | finalize_simulation (core::pose::Pose &pose, protocols::canonical_sampling::MetropolisHastingsMover const &metropolis_hastings_mover) |
| Callback executed after all Monte Carlo trials are completed. More... | |
| virtual bool | is_multi_trial () |
| Return true if the move performs multiple trials on each apply. More... | |
| virtual core::Real | last_inner_score_delta_over_temperature () |
| If this is a multi-trial move, return the change in internal score/temperature caused by the last call to apply(). More... | |
| virtual protocols::canonical_sampling::MetropolisHastingsMoverAP | metropolis_hastings_mover () |
| If this is a multi-trial move, return the MetropolisHastingsMover being used internally. More... | |
| virtual void | set_metropolis_hastings_mover (protocols::canonical_sampling::MetropolisHastingsMoverAP metropolis_hastings_mover) |
| If this is a multi-trial move, set the MetropolisHastingsMover to be used internally. More... | |
Public Member Functions inherited from protocols::moves::Mover | |
| 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 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 |
| 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 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... | |
Static Public Member Functions | |
| static std::string | mover_name () |
| static void | provide_xml_schema (utility::tag::XMLSchemaDefinition &xsd) |
Static Public Member Functions inherited from protocols::moves::Mover | |
| static std::string | name () |
| static void | register_options () |
| Overload this static method if you access options within the mover. More... | |
Protected Attributes | |
| core::Real | temperature0_ |
| core::Real | sampling_temperature_ |
Private Member Functions | |
| void | make_rotwell_jump (utility::vector1< core::pack::dunbrack::DunbrackRotamerSampleData > const &rotamer_sample_data) |
| void | preturb_rot_and_dunbrack_eval (core::conformation::ResidueOP input_residue, core::pose::Pose const &pose) |
| void | perturb_rot_within_well (utility::vector1< core::pack::dunbrack::DunbrackRotamerSampleData > const &rotamer_sample_data, utility::vector1< core::Real > const &previous_chi_angles) |
| bool | dunbrack_accept (numeric::random::RandomGenerator &Rand, core::conformation::Residue &res, core::pose::Pose const &pose, utility::vector1< core::Real > const &previous_chi_angles, utility::vector1< core::Real > const &new_chi_angles) |
| void | perturb_chi (numeric::random::RandomGenerator &Rand, core::Real max_deviation, utility::vector1< core::Real > ¤t_chi, utility::vector1< core::Real > &new_chi) |
Additional Inherited Members | |
Public Types inherited from protocols::moves::Mover | |
| typedef utility::tag::TagCOP | TagCOP |
| typedef core::pose::Pose | Pose |
| typedef core::pose::PoseCOP | PoseCOP |
| typedef std::list< std::string > | Strings |
Protected Member Functions inherited from protocols::moves::Mover | |
| 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... | |
class for non-discrete side chain sampling using Dunbrack rotamer probabilities/distributions
| protocols::simple_moves::sidechain_moves::SidechainMover::SidechainMover | ( | ) |
default constructor
| protocols::simple_moves::sidechain_moves::SidechainMover::SidechainMover | ( | core::pack::dunbrack::RotamerLibrary const & | rotamer_library | ) |
constructor with user provided rotamer library
| protocols::simple_moves::sidechain_moves::SidechainMover::SidechainMover | ( | SidechainMover const & | mover | ) |
References pose_, scratch_, task_, and task_factory_.
|
overridedefault |
|
overridevirtual |
apply a sidechain move to a Pose object
Implements protocols::moves::Mover.
References change_chi_without_replacing_residue(), core::conformation::Residue::chi(), init_task(), last_mutation_, make_move(), core::chemical::ResidueTypeBase::name(), core::chemical::ResidueType::nchi(), next_resnum_, packed_residues_, core::pose::Pose::phi(), core::pose::Pose::psi(), core::pose::Pose::replace_residue(), core::pose::Pose::residue(), core::scoring::rg, core::pose::Pose::set_chi(), protocols::simple_moves::sidechain_moves::TR(), and core::conformation::Residue::type().
Referenced by protocols::protein_interface_design::movers::BackrubDDMover::apply().
| bool protocols::simple_moves::sidechain_moves::SidechainMover::change_chi_without_replacing_residue | ( | ) | const |
perform direct chi manipulations rather than using replace_residue to effect rotamer changes; useful if things are kinematically dependent on a sidechain.
References change_chi_without_replacing_residue_.
Referenced by apply(), parse_my_tag(), and set_change_chi_without_replacing_residue().
|
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.
|
overridevirtual |
get the DOF_IDs perturbed by the mover during moves, along with their ranges
Reimplemented from protocols::canonical_sampling::ThermodynamicMover.
References core::id::CHI, core::pose::Pose::conformation(), core::conformation::Conformation::dof_id_from_torsion_id(), init_task(), core::chemical::ResidueTypeBase::name3(), core::chemical::ResidueType::nchi(), packed_residues_, core::pose::Pose::residue_type(), and task_.
|
private |
|
overridevirtual |
Each derived class must specify its name. The class name.
Implements protocols::moves::Mover.
References mover_name().
| void protocols::simple_moves::sidechain_moves::SidechainMover::idealize_sidechains | ( | core::pose::Pose & | pose | ) |
idealize sidechains that might be altered
all sidechains that might be changed are replaced with ideal coordinates that have the original chi angles
References core::chemical::aa_pro, core::pose::Pose::chi(), core::pose::Pose::conformation(), init_task(), packed_residues_, core::pose::Pose::replace_residue(), core::pose::Pose::residue(), core::pose::Pose::residue_type(), core::pose::Pose::set_chi(), and task_.
Referenced by initialize_simulation().
| void protocols::simple_moves::sidechain_moves::SidechainMover::init_task | ( | core::pose::Pose const & | pose | ) |
initialize the packer task if necessary
Check to make sure that a packer task exists and matches the numer of residues in the given pose. If that isn't the case, create a new one with the task factory. Exits with an error if no task factory exists.
References pose_, set_task(), core::pose::Pose::size(), task_, and task_factory_.
Referenced by protocols::simple_moves::sidechain_moves::SidechainMCMover::apply(), apply(), dof_id_ranges(), and idealize_sidechains().
|
overridevirtual |
Callback executed before any Monte Carlo trials are attempted.
Reimplemented from protocols::canonical_sampling::ThermodynamicMover.
References idealize_sidechains().
Referenced by protocols::simple_moves::sidechain_moves::SidechainMCMover::initialize_simulation().
| bool protocols::simple_moves::sidechain_moves::SidechainMover::last_mutation | ( | ) | const |
get whether the last move mutated the residue
References last_mutation_.
| core::Size protocols::simple_moves::sidechain_moves::SidechainMover::last_nchi | ( | ) | const |
get the number of chi angles sampled in the last move
References last_nchi_.
|
overridevirtual |
get the ratio of proposal densities for the last move
Reimplemented from protocols::canonical_sampling::ThermodynamicMover.
References last_proposal_density_ratio_.
Referenced by protocols::simple_moves::sidechain_moves::SidechainMCMover::apply().
| bool protocols::simple_moves::sidechain_moves::SidechainMover::last_uniform | ( | ) | const |
get whether the last move used uniform chi sampling
References last_uniform_.
| bool protocols::simple_moves::sidechain_moves::SidechainMover::last_withinrot | ( | ) | const |
get whether the last move sampled within the same rotamer
References last_withinrot_.
| core::conformation::ResidueOP protocols::simple_moves::sidechain_moves::SidechainMover::make_move | ( | core::conformation::ResidueOP | res, |
| core::pose::Pose const & | pose | ||
| ) |
References protocols::cluster::calibur::aa, core::chemical::aa_pro, core::conformation::ResidueFactory::create_residue(), last_chi_angles_, last_mutation_, last_nchi_, last_pertrot_, last_proposal_density_ratio_, last_uniform_, last_withinrot_, make_rotwell_jump(), perturb_rot_within_well(), pose_, preserve_detailed_balance_, preturb_rot_and_dunbrack_eval(), prob_random_pert_to_current_, prob_uniform_, prob_withinrot_, proposal_density(), core::scoring::rg, task_, protocols::simple_moves::sidechain_moves::TR(), and update_type().
Referenced by protocols::simple_moves::sidechain_moves::SidechainMCMover::apply(), and apply().
|
private |
References last_chi_angles_, core::scoring::rg, sample_rotwells_unif_, sampling_temperature_, temperature0_, and protocols::simple_moves::sidechain_moves::TR().
Referenced by make_move().
|
static |
| core::Size protocols::simple_moves::sidechain_moves::SidechainMover::next_resnum | ( | ) | const |
get the next residue to be changed, 0 means a random will be chosen
References next_resnum_.
| void protocols::simple_moves::sidechain_moves::SidechainMover::next_resnum | ( | core::Size | resnum | ) |
set the next residue to be changed, 0 means a random will be chosen
References next_resnum_, and residue_packed_.
| utility::vector1< core::Size > const & protocols::simple_moves::sidechain_moves::SidechainMover::packed_residues | ( | ) | const |
get the residues that can be changed by this mover
References packed_residues_.
Referenced by protocols::simple_moves::sidechain_moves::SidechainMCMover::apply().
|
overridevirtual |
Called by MoverFactory when constructing new Movers. Takes care of the specific mover's parsing.
Some movers need not be parsed, so we shouldn't force people to reimplement this method. However, we should be chatty about the fact that someone is using a RosettaScripts interface to a mover which didn't define parse_my_tag()
Reimplemented from protocols::moves::Mover.
References change_chi_without_replacing_residue(), preserve_detailed_balance(), prob_random_pert_current(), prob_uniform(), prob_withinrot(), set_change_chi_without_replacing_residue(), set_preserve_detailed_balance(), set_prob_random_pert_current(), set_prob_uniform(), set_prob_withinrot(), and task_factory_.
|
private |
Referenced by preturb_rot_and_dunbrack_eval().
|
private |
References last_chi_angles_, last_withinrot_, core::scoring::rg, and protocols::simple_moves::sidechain_moves::TR().
Referenced by make_move().
|
overridevirtual |
get whether detailed balance is preserved (i.e. proposal density ratio calculated)
Implements protocols::canonical_sampling::ThermodynamicMover.
References preserve_detailed_balance_.
Referenced by parse_my_tag(), protocols::simple_moves::sidechain_moves::SidechainMCMover::parse_my_tag(), and set_preserve_detailed_balance().
|
private |
| core::Real protocols::simple_moves::sidechain_moves::SidechainMover::prob_random_pert_current | ( | ) | const |
References prob_random_pert_to_current_.
Referenced by parse_my_tag(), and protocols::simple_moves::sidechain_moves::SidechainMCMover::parse_my_tag().
| core::Real protocols::simple_moves::sidechain_moves::SidechainMover::prob_uniform | ( | ) | const |
get the probability of uniformly sampling chi angles
References prob_uniform_.
Referenced by parse_my_tag(), protocols::simple_moves::sidechain_moves::SidechainMCMover::parse_my_tag(), and set_prob_uniform().
| core::Real protocols::simple_moves::sidechain_moves::SidechainMover::prob_withinrot | ( | ) | const |
get the probability of sampling within the same rotamer
References prob_withinrot_.
Referenced by parse_my_tag(), protocols::simple_moves::sidechain_moves::SidechainMCMover::parse_my_tag(), and set_prob_withinrot().
| core::Real protocols::simple_moves::sidechain_moves::SidechainMover::proposal_density | ( | core::conformation::Residue const & | proposed_residue, |
| core::Size const | proposed_resnum, | ||
| core::chemical::ResidueType const & | initial_residue_type, | ||
| utility::vector1< core::Real > const & | initial_chi_angles | ||
| ) | const |
References core::chemical::ResidueTypeBase::aa(), core::pack::task::ResidueLevelTask::allowed_residue_types(), core::conformation::Residue::chi(), core::conformation::Residue::nchi(), prob_uniform_, prob_withinrot_, protocols::simple_moves::bb_sampler::probability, sample_rotwells_unif_, task_, and core::conformation::Residue::type().
Referenced by make_move().
|
static |
| utility::vector1< bool > const & protocols::simple_moves::sidechain_moves::SidechainMover::residue_packed | ( | ) | const |
get a vector indicating whether each residue can be packed
References residue_packed_.
| core::pack::dunbrack::RotamerLibrary const & protocols::simple_moves::sidechain_moves::SidechainMover::rotamer_library | ( | ) | const |
get the rotamer library
References rotamer_library_.
|
inline |
References sampling_temperature_.
| void protocols::simple_moves::sidechain_moves::SidechainMover::set_change_chi_without_replacing_residue | ( | bool const | change_chi_without_replacing_residue | ) |
perform direct chi manipulations rather than using replace_residue to effect rotamer changes; useful if things are kinematically dependent on a sidechain.
References change_chi_without_replacing_residue(), and change_chi_without_replacing_residue_.
Referenced by parse_my_tag().
|
overridevirtual |
set whether detailed balance is preserved (i.e. proposal density ratio calculated)
Implements protocols::canonical_sampling::ThermodynamicMover.
References preserve_detailed_balance(), and preserve_detailed_balance_.
Referenced by parse_my_tag(), and protocols::simple_moves::sidechain_moves::SidechainMCMover::parse_my_tag().
| void protocols::simple_moves::sidechain_moves::SidechainMover::set_prob_random_pert_current | ( | core::Real | prob_pert | ) |
References prob_random_pert_to_current_.
Referenced by parse_my_tag(), and protocols::simple_moves::sidechain_moves::SidechainMCMover::parse_my_tag().
| void protocols::simple_moves::sidechain_moves::SidechainMover::set_prob_uniform | ( | core::Real | prob_uniform | ) |
set the probability of uniformly sampling chi angles
References prob_uniform(), and prob_uniform_.
Referenced by protocols::protein_interface_design::movers::BackrubDDMover::apply(), parse_my_tag(), and protocols::simple_moves::sidechain_moves::SidechainMCMover::parse_my_tag().
| void protocols::simple_moves::sidechain_moves::SidechainMover::set_prob_withinrot | ( | core::Real | prob_withinrot | ) |
set the probability of sampling within the same rotamer
References prob_withinrot(), and prob_withinrot_.
Referenced by parse_my_tag(), and protocols::simple_moves::sidechain_moves::SidechainMCMover::parse_my_tag().
|
inline |
set temperature for bias sampling at dunbrack distribution
References sampling_temperature_.
| void protocols::simple_moves::sidechain_moves::SidechainMover::set_task | ( | core::pack::task::PackerTaskCOP | task | ) |
set the task
References core::chemical::aa_pro, packed_residues_, residue_packed_, task(), and task_.
Referenced by init_task(), and protocols::mpi_refinement::WorkUnit_bbGauss::run().
| void protocols::simple_moves::sidechain_moves::SidechainMover::set_task_factory | ( | core::pack::task::TaskFactoryCOP | task_factory | ) |
set the task factory
References task_factory(), and task_factory_.
Referenced by protocols::protein_interface_design::movers::BackrubDDMover::apply(), and protocols::simple_moves::sidechain_moves::SidechainMCMover::parse_my_tag().
| core::pack::task::PackerTaskCOP protocols::simple_moves::sidechain_moves::SidechainMover::task | ( | ) | const |
| core::pack::task::TaskFactoryCOP protocols::simple_moves::sidechain_moves::SidechainMover::task_factory | ( | ) | const |
| bool protocols::simple_moves::sidechain_moves::SidechainMover::task_initialized | ( | ) |
References task_initialized_.
|
overridevirtual |
test the backrub move
Reimplemented from protocols::moves::Mover.
|
overridevirtual |
get the TorsionIDs perturbed by the mover during moves, along with their ranges
Implements protocols::canonical_sampling::ThermodynamicMover.
| void protocols::simple_moves::sidechain_moves::SidechainMover::update_type | ( | ) |
update string describing the move type
All move types are prefixed with "sc". Sections are divided by underscores. The next section indicates whether a mutation was made ("mut") or not ("chi"). The last section indicates wehter chi sampling was uniform ("unif"), used Dunbrack rotamer statistics ("rot"), or whether no chi angles existed in the placed residue ("none").
References last_mutation_, last_nchi_, last_pertrot_, last_uniform_, last_withinrot_, protocols::motifs::mt(), and protocols::moves::Mover::type().
Referenced by make_move().
|
private |
Referenced by preturb_rot_and_dunbrack_eval().
|
private |
Referenced by change_chi_without_replacing_residue(), and set_change_chi_without_replacing_residue().
|
private |
Referenced by make_move(), make_rotwell_jump(), perturb_rot_within_well(), and preturb_rot_and_dunbrack_eval().
|
private |
Referenced by apply(), last_mutation(), make_move(), and update_type().
|
private |
Referenced by last_nchi(), make_move(), and update_type().
|
private |
Referenced by make_move(), preturb_rot_and_dunbrack_eval(), and update_type().
|
private |
Referenced by last_proposal_density_ratio(), and make_move().
|
private |
Referenced by last_uniform(), make_move(), and update_type().
|
private |
Referenced by last_withinrot(), make_move(), perturb_rot_within_well(), and update_type().
|
private |
Referenced by apply(), and next_resnum().
|
private |
Referenced by apply(), dof_id_ranges(), idealize_sidechains(), packed_residues(), and set_task().
|
private |
Referenced by init_task(), make_move(), and SidechainMover().
|
private |
Referenced by make_move(), preserve_detailed_balance(), preturb_rot_and_dunbrack_eval(), and set_preserve_detailed_balance().
|
private |
Referenced by make_move(), prob_random_pert_current(), and set_prob_random_pert_current().
|
private |
Referenced by make_move(), prob_uniform(), proposal_density(), and set_prob_uniform().
|
private |
Referenced by make_move(), prob_withinrot(), proposal_density(), and set_prob_withinrot().
|
private |
Referenced by next_resnum(), residue_packed(), and set_task().
|
private |
Referenced by dunbrack_accept(), and rotamer_library().
|
private |
Referenced by make_rotwell_jump(), and proposal_density().
|
protected |
Referenced by dunbrack_accept(), make_rotwell_jump(), sampling_temperature(), and set_sampling_temperature().
|
private |
Referenced by dunbrack_accept(), and SidechainMover().
|
private |
Referenced by dof_id_ranges(), idealize_sidechains(), init_task(), make_move(), proposal_density(), set_task(), SidechainMover(), and task().
|
private |
Referenced by init_task(), parse_my_tag(), set_task_factory(), SidechainMover(), and task_factory().
|
private |
Referenced by task_initialized().
|
protected |
Referenced by dunbrack_accept(), and make_rotwell_jump().
1.8.7