|
Rosetta 3.5
|
#include <BDR.hh>


Public Member Functions | |
| BDR () | |
| default constructor More... | |
| BDR (BDR const &rval) | |
| copy constructor More... | |
| virtual | ~BDR () |
| default destructor More... | |
| virtual MoverOP | clone () const |
| clone this object More... | |
| virtual MoverOP | fresh_instance () const |
| create this type of object More... | |
| bool | use_fullmer () const |
| use full-mer fragments when building the loop? (default false) More... | |
| bool | use_sequence_bias () const |
| use sequence biased fragments when building the loop? (default false) More... | |
| Real | max_linear_chainbreak () const |
| the maximum allowed linear chainbreak (default 0.07) More... | |
| String const & | centroid_loop_mover_str () const |
| the loop mover string to use during centroid build (default "RemodelLoopMover") More... | |
| bool | redesign_loop_neighborhood () const |
| redesign the neighborhood around the loop? if false, then just repacks during the design phase (default true) More... | |
| String const & | resfile () const |
| name of the resfile to use during design-refine; empty string implies no resfile More... | |
| Size | dr_cycles () const |
| the number of design-refine cycles to perform, default 3 More... | |
| ScoreFunction const & | centroid_scorefunction () const |
| the centroid level score function, default "remodel_cen" More... | |
| ScoreFunction const & | fullatom_scorefunction () const |
| the full-atom level score function, default score12 More... | |
| void | add_instruction (BuildInstructionOP bi, String const &aa_during_design_refine=String()) |
| add instruction to the manager of this BDR (no copy) More... | |
| void | create_directed_dependency (BuildInstructionOP u, BuildInstructionOP v) |
| create directed dependency between two instructions More... | |
| void | use_fullmer (bool const flag) |
| use full-mer fragments when building the loop? More... | |
| void | use_sequence_bias (bool const flag) |
| use sequence biased fragments when building the loop? (default false) More... | |
| void | max_linear_chainbreak (Real const threshold) |
| the maximum allowed linear chainbreak More... | |
| void | centroid_loop_mover_str (String const &loop_mover_str) |
| the loop mover string to use during centroid build More... | |
| void | redesign_loop_neighborhood (bool const flag) |
| redesign the neighborhood around the loop? if false, then just repacks during the design phase More... | |
| void | resfile (String const &filename) |
| name of the resfile to use during design-refine; empty string implies no resfile More... | |
| void | dr_cycles (Size const cycles) |
| set the number of design-refine cycles to perform More... | |
| void | centroid_scorefunction (ScoreFunction const &sfx) |
| set the centroid level score function More... | |
| void | centroid_scorefunction (ScoreFunctionOP sfx) |
| set the centroid level score function More... | |
| void | fullatom_scorefunction (ScoreFunction const &sfx) |
| set the full-atom level score function More... | |
| void | fullatom_scorefunction (ScoreFunctionOP sfx) |
| set the full-atom level score function More... | |
| virtual void | apply (Pose &pose) |
| apply defined moves to given Pose More... | |
| virtual std::string | get_name () const |
| Each derived class must specify its name. The class name. More... | |
Public Member Functions inherited from protocols::moves::Mover | |
| 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 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... | |
| void | set_current_job (protocols::jobdist::BasicJobCOP job) |
| jobdist::BasicJobCOP | get_current_job () const |
Static Public Member Functions | |
| static String | neighborhood_calc_name () |
| the name for the loops' neighborhood calculator More... | |
| static String | loops_buns_polar_calc_name () |
| the name for the loops' buried unsatisfied polars calculator More... | |
| static String | neighborhood_buns_polar_calc_name () |
| the name for the loops' neighborhood buried unsatisfied polars calculator More... | |
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. 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... | |
Private Types | |
| typedef protocols::moves::Mover | Super |
Private Member Functions | |
| BDR & | operator= (BDR const &rval) |
| copy assignment More... | |
| bool | centroid_build (Pose &pose) |
| run the centroid level build stage More... | |
| bool | design_refine (Pose &pose) |
| run the design-refine stage More... | |
| TaskFactoryOP | generic_taskfactory () |
| return a TaskFactory useable as a starting point for either design or refinement More... | |
| void | process_continuous_design_string (Interval const &original_interval, String const &design_str, Original2Modified const &original2modified_interval_endpoints, TaskFactoryOP design_tf) |
| process a continuous design string, adding appropriate operations to the TaskFactory More... | |
| void | process_insert_design_string (Interval const &original_interval, String const &design_str, Original2Modified const &original2modified_interval_endpoints, TaskFactoryOP design_tf) |
| process a design string containing an insert, adding appropriate operations to the TaskFactory More... | |
Static Private Member Functions | |
| static utility::vector1< bool > const & | allowed_surface_aa () |
| return a boolean vector specifying allowed a.a. when designing on the surface More... | |
Private Attributes | |
| BuildManager | manager_ |
| the BuildManager More... | |
| DesignInfo | design_info_ |
| Stores instructions' original interval and a string denoting the sequence during design. More... | |
| bool | use_fullmer_ |
| use full-mer fragments when building the loop? (default false) More... | |
| bool | use_sequence_bias_ |
| use sequence biased fragments when building the loop? (default false) More... | |
| Real | max_linear_chainbreak_ |
| the maximum allowed linear chainbreak (default 0.07) More... | |
| String | centroid_loop_mover_str_ |
| the loop mover string to use during centroid build (default "RemodelLoopMover") More... | |
| bool | redesign_loop_neighborhood_ |
| redesign the neighborhood around the loop? if false, then just repacks during the design phase (default true) More... | |
| String | resfile_ |
| name of the resfile to use during design-refine; empty string implies no resfile More... | |
| Size | dr_cycles_ |
| the number of design-refine cycles to perform, default 3 More... | |
| ScoreFunctionOP | centroid_sfx_ |
| the centroid scorefunction to use, default "remodel_cen" More... | |
| ScoreFunctionOP | fullatom_sfx_ |
| the full-atom scorefunction to use, default score12 More... | |
| VarLengthBuildOP | vlb_ |
| VLB for centroid_build. More... | |
Additional Inherited Members | |
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... | |
| typedef std::pair< Interval, String > protocols::forge::components::BDR::OriginalInterval2DesignString |
| typedef std::string protocols::forge::components::BDR::String |
|
private |
| protocols::forge::components::BDR::BDR | ( | ) |
default constructor
Definition at line 71 of file BDR.cc.
Referenced by clone(), and fresh_instance().
| protocols::forge::components::BDR::BDR | ( | BDR const & | rval) |
|
virtual |
| void protocols::forge::components::BDR::add_instruction | ( | BuildInstructionOP | bi, |
| String const & | aa_during_design_refine = String() |
||
| ) |
add instruction to the manager of this BDR (no copy)
| [in] | bi | BuildInstruction |
| [in] | aa_during_design_refine | The allowed amino acid sequence during design. Only applicable to BuildInstructions like SegmentRebuild and SegmentInsert. Make sure the length of this string matches up properly, and remember to use any special characters, e.g. the insertion character for SegmentInsert |
| [in] | bi | BuildInstruction |
| [in] | aa_during_design_refine | The allowed amino acid sequence during design. Only applicable to BuildInstructions like SegmentRebuild and SegmentInsert. Make sure the length of this string matches up properly. Default empty string. |
Definition at line 140 of file BDR.cc.
References protocols::forge::build::BuildManager::add(), design_info_, manager_, and vlb_.
|
staticprivate |
return a boolean vector specifying allowed a.a. when designing on the surface
Definition at line 608 of file BDR.cc.
References core::chemical::aa_from_oneletter_code().
Referenced by process_continuous_design_string(), and process_insert_design_string().
|
virtual |
apply defined moves to given Pose
Implements protocols::moves::Mover.
Definition at line 191 of file BDR.cc.
References centroid_build(), design_refine(), dr_cycles_, protocols::moves::FAIL_DO_NOT_RETRY, protocols::moves::FAIL_RETRY, loops_buns_polar_calc_name(), manager_, core::pose::Pose::metric(), protocols::moves::MS_SUCCESS, neighborhood_buns_polar_calc_name(), neighborhood_calc_name(), protocols::moves::Mover::set_last_move_status(), and protocols::forge::build::BuildManager::union_of_intervals_containing_undefined_positions().
run the centroid level build stage
Definition at line 266 of file BDR.cc.
References centroid_loop_mover_str_, centroid_sfx_, core::scoring::Energies::clear(), protocols::forge::components::VLB_VallMemoryUsage::CLEAR_IF_CACHING_FRAGMENTS, protocols::toolbox::pose_manipulation::construct_poly_ala_pose(), core::pose::Pose::energies(), core::chemical::FA_STANDARD, core::conformation::Residue::is_protein(), manager_, max_linear_chainbreak_, protocols::forge::build::BuildManager::modify(), protocols::moves::MS_SUCCESS, core::pose::Pose::n_residue(), core::chemical::ResidueTypeSet::name(), protocols::forge::build::BuildManager::original2modified(), core::pose::Pose::residue(), core::conformation::Residue::residue_type_set(), protocols::forge::methods::restore_residues(), core::scoring::SCORE12_PATCH, core::pose::Pose::sequence(), core::scoring::STANDARD_WTS, core::util::switch_to_residue_type_set(), use_fullmer_, use_sequence_bias_, and vlb_.
Referenced by apply().
|
inline |
the loop mover string to use during centroid build (default "RemodelLoopMover")
Definition at line 152 of file BDR.hh.
References centroid_loop_mover_str_.
|
inline |
the loop mover string to use during centroid build
Definition at line 236 of file BDR.hh.
References centroid_loop_mover_str_.
| BDR::ScoreFunction const & protocols::forge::components::BDR::centroid_scorefunction | ( | ) | const |
the centroid level score function, default "remodel_cen"
Definition at line 123 of file BDR.cc.
References centroid_sfx_.
| void protocols::forge::components::BDR::centroid_scorefunction | ( | ScoreFunction const & | sfx) |
set the centroid level score function
Definition at line 167 of file BDR.cc.
References centroid_sfx_, and core::scoring::ScoreFunction::clone().
| void protocols::forge::components::BDR::centroid_scorefunction | ( | ScoreFunctionOP | sfx) |
set the centroid level score function
Definition at line 173 of file BDR.cc.
References centroid_sfx_.
|
virtual |
clone this object
Reimplemented from protocols::moves::Mover.
Definition at line 111 of file BDR.cc.
References BDR().
| void protocols::forge::components::BDR::create_directed_dependency | ( | BuildInstructionOP | u, |
| BuildInstructionOP | v | ||
| ) |
create directed dependency between two instructions
Definition at line 157 of file BDR.cc.
References protocols::forge::build::BuildManager::create_directed_dependency(), and manager_.
run the design-refine stage
Definition at line 359 of file BDR.cc.
References core::pose::annotated_to_oneletter_sequence(), core::pack::dunbrack::c, core::scoring::Energies::clear(), design_info_, dr_cycles_, core::pose::Pose::energies(), core::pose::Pose::fold_tree(), protocols::forge::methods::fold_tree_from_loops(), fullatom_sfx_, generic_taskfactory(), protocols::forge::build::BuildManager::intervals_containing_undefined_positions(), protocols::forge::methods::intervals_to_loops(), protocols::forge::methods::linear_chainbreak(), core::scoring::linear_chainbreak, manager_, max_linear_chainbreak_, protocols::forge::build::BuildManager::movemap_as_OP(), core::pose::Pose::n_residue(), neighborhood_calc_name(), protocols::forge::build::BuildManager::new_positions(), protocols::forge::build::BuildManager::original2modified_interval_endpoints(), process_continuous_design_string(), process_insert_design_string(), redesign_loop_neighborhood_, core::util::remove_cutpoint_variants(), protocols::loops::remove_cutpoint_variants(), core::scoring::SCORE12_PATCH, and core::scoring::STANDARD_WTS.
Referenced by apply().
|
inline |
the number of design-refine cycles to perform, default 3
Definition at line 175 of file BDR.hh.
References dr_cycles_.
|
inline |
set the number of design-refine cycles to perform
Definition at line 259 of file BDR.hh.
References dr_cycles_.
|
virtual |
create this type of object
Reimplemented from protocols::moves::Mover.
Definition at line 117 of file BDR.cc.
References BDR().
| BDR::ScoreFunction const & protocols::forge::components::BDR::fullatom_scorefunction | ( | ) | const |
the full-atom level score function, default score12
Definition at line 129 of file BDR.cc.
References fullatom_sfx_.
| void protocols::forge::components::BDR::fullatom_scorefunction | ( | ScoreFunction const & | sfx) |
set the full-atom level score function
Definition at line 179 of file BDR.cc.
References core::scoring::ScoreFunction::clone(), and fullatom_sfx_.
| void protocols::forge::components::BDR::fullatom_scorefunction | ( | ScoreFunctionOP | sfx) |
set the full-atom level score function
Definition at line 185 of file BDR.cc.
References fullatom_sfx_.
|
private |
return a TaskFactory useable as a starting point for either design or refinement
Definition at line 487 of file BDR.cc.
References resfile_.
Referenced by design_refine().
|
virtual |
Each derived class must specify its name. The class name.
Implements protocols::moves::Mover.
|
inlinestatic |
|
inline |
the maximum allowed linear chainbreak (default 0.07)
Definition at line 142 of file BDR.hh.
References max_linear_chainbreak_.
|
inline |
the maximum allowed linear chainbreak
Definition at line 227 of file BDR.hh.
References max_linear_chainbreak_.
|
inlinestatic |
|
inlinestatic |
the name for the loops' neighborhood calculator
Definition at line 286 of file BDR.hh.
Referenced by apply(), and design_refine().
copy assignment
|
private |
process a continuous design string, adding appropriate operations to the TaskFactory
Definition at line 514 of file BDR.cc.
References core::chemical::aa_from_oneletter_code(), allowed_surface_aa(), and protocols::forge::build::Interval::left.
Referenced by design_refine().
|
private |
process a design string containing an insert, adding appropriate operations to the TaskFactory
Definition at line 547 of file BDR.cc.
References core::chemical::aa_from_oneletter_code(), allowed_surface_aa(), protocols::forge::build::Interval::left, protocols::forge::build::Interval::length(), and protocols::forge::build::Interval::right.
Referenced by design_refine().
|
inline |
redesign the neighborhood around the loop? if false, then just repacks during the design phase (default true)
Definition at line 160 of file BDR.hh.
References redesign_loop_neighborhood_.
|
inline |
redesign the neighborhood around the loop? if false, then just repacks during the design phase
Definition at line 244 of file BDR.hh.
References redesign_loop_neighborhood_.
|
inline |
|
inline |
name of the resfile to use during design-refine; empty string implies no resfile
Definition at line 252 of file BDR.hh.
References protocols::abinitio::filename(), and resfile_.
|
inline |
use full-mer fragments when building the loop? (default false)
Definition at line 128 of file BDR.hh.
References use_fullmer_.
|
inline |
use full-mer fragments when building the loop?
Definition at line 213 of file BDR.hh.
References use_fullmer_.
|
inline |
use sequence biased fragments when building the loop? (default false)
Definition at line 135 of file BDR.hh.
References use_sequence_bias_.
|
inline |
use sequence biased fragments when building the loop? (default false)
Definition at line 220 of file BDR.hh.
References use_sequence_bias_.
|
private |
the loop mover string to use during centroid build (default "RemodelLoopMover")
Definition at line 400 of file BDR.hh.
Referenced by centroid_build(), and centroid_loop_mover_str().
|
private |
the centroid scorefunction to use, default "remodel_cen"
Definition at line 418 of file BDR.hh.
Referenced by centroid_build(), and centroid_scorefunction().
|
private |
Stores instructions' original interval and a string denoting the sequence during design.
Definition at line 381 of file BDR.hh.
Referenced by add_instruction(), and design_refine().
|
private |
the number of design-refine cycles to perform, default 3
Definition at line 414 of file BDR.hh.
Referenced by apply(), design_refine(), and dr_cycles().
|
private |
the full-atom scorefunction to use, default score12
Definition at line 422 of file BDR.hh.
Referenced by design_refine(), and fullatom_scorefunction().
|
private |
the BuildManager
Definition at line 373 of file BDR.hh.
Referenced by add_instruction(), apply(), centroid_build(), create_directed_dependency(), and design_refine().
|
private |
the maximum allowed linear chainbreak (default 0.07)
Definition at line 393 of file BDR.hh.
Referenced by centroid_build(), design_refine(), and max_linear_chainbreak().
|
private |
redesign the neighborhood around the loop? if false, then just repacks during the design phase (default true)
Definition at line 405 of file BDR.hh.
Referenced by design_refine(), and redesign_loop_neighborhood().
|
private |
name of the resfile to use during design-refine; empty string implies no resfile
Definition at line 410 of file BDR.hh.
Referenced by generic_taskfactory(), and resfile().
|
private |
use full-mer fragments when building the loop? (default false)
Definition at line 385 of file BDR.hh.
Referenced by centroid_build(), and use_fullmer().
|
private |
use sequence biased fragments when building the loop? (default false)
Definition at line 389 of file BDR.hh.
Referenced by centroid_build(), and use_sequence_bias().
|
private |
VLB for centroid_build.
Definition at line 432 of file BDR.hh.
Referenced by add_instruction(), BDR(), and centroid_build().
1.8.4