Rosetta
|
#include <GraftCDRLoopsProtocol.hh>
Public Types | |
typedef std::map< std::string, bool > | GraftMap |
![]() | |
typedef utility::tag::TagCOP | TagCOP |
typedef core::pose::Pose | Pose |
typedef core::pose::PoseCOP | PoseCOP |
typedef std::list< std::string > | Strings |
Public Member Functions | |
GraftCDRLoopsProtocol () | |
~GraftCDRLoopsProtocol () override | |
protocols::moves::MoverOP | clone () const override |
Return a clone of the Mover object. More... | |
void | set_default () |
Assigns default values to primitive members. More... | |
void | apply (core::pose::Pose &pose) override |
Main Method. More... | |
void | set_graft_l1 (bool graft_l1) |
void | set_graft_l2 (bool graft_l2) |
void | set_graft_l3 (bool graft_l3) |
void | set_graft_h1 (bool graft_h1) |
void | set_graft_h2 (bool graft_h2) |
void | set_graft_h3 (bool graft_h3) |
void | set_h3_stem_graft (bool h3_stem_graft) |
void | set_packonly_after_graft (bool setting) |
void | set_stem_optimize (bool setting) |
void | set_camelid (bool camelid) |
void | set_camelid_constraints (bool camelid_constraints) |
void | set_benchmark (bool benchmark) |
void | set_cst_weight (core::Real cst_weight) |
void | set_sc_min (bool scmin) |
void | set_rt_min (bool rtmin) |
std::string | get_name () const override |
Each derived class must specify its name. The class name. More... | |
void | display_constraint_residues (core::pose::Pose &pose) |
void | show (std::ostream &out=std::cout) const override |
![]() | |
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 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... | |
Static Public Member Functions | |
static void | register_options () |
Associates relevant options with the AntibodyModeler class. More... | |
![]() | |
static std::string | name () |
static void | register_options () |
Overload this static method if you access options within the mover. More... | |
Private Member Functions | |
void | finalize_setup (core::pose::Pose &pose) |
void | init () |
void | setup_objects () |
void | init_from_options () |
Private Attributes | |
bool | graft_l1_ |
bool | graft_l2_ |
bool | graft_l3_ |
bool | graft_h1_ |
bool | graft_h2_ |
bool | graft_h3_ |
bool | h3_no_stem_graft_ |
bool | packonly_after_graft_ |
bool | camelid_ |
bool | camelid_constraints_ |
bool | sc_min_ |
bool | rt_min_ |
bool | benchmark_ |
bool | stem_optimize_ |
core::Real | cst_weight_ |
core::scoring::ScoreFunctionOP | scorefxn_pack_ |
AntibodyInfoOP | ab_info_ |
Ab_TemplateInfoOP | ab_t_info_ |
core::pack::task::TaskFactoryOP | tf_ |
protocols::moves::SequenceMoverOP | graft_sequence_ |
protocols::moves::SequenceMoverOP | optimize_sequence_ |
CDRsMinPackMinOP | cdrs_min_pack_min_ |
Friends | |
std::ostream & | operator<< (std::ostream &out, const GraftCDRLoopsProtocol &ab_m_2) |
Additional Inherited Members | |
![]() | |
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::map< std::string, bool > protocols::antibody::GraftCDRLoopsProtocol::GraftMap |
protocols::antibody::GraftCDRLoopsProtocol::GraftCDRLoopsProtocol | ( | ) |
References init().
|
overridedefault |
|
overridevirtual |
Main Method.
Implements protocols::moves::Mover.
References ab_info_, protocols::antibody::align_to_native(), camelid_constraints_, cdrs_min_pack_min_, display_constraint_residues(), core::pose::Pose::dump_pdb(), finalize_setup(), protocols::moves::Mover::get_native_pose(), graft_sequence_, optimize_sequence_, core::pose::Pose::secstruct(), core::pose::Pose::set_secstruct(), core::pose::set_ss_from_phipsi(), core::pose::Pose::size(), stem_optimize_, and protocols::antibody::TR().
|
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.
void protocols::antibody::GraftCDRLoopsProtocol::display_constraint_residues | ( | core::pose::Pose & | pose | ) |
|
private |
References ab_info_, ab_t_info_, benchmark_, camelid_, cdrs_min_pack_min_, cst_weight_, protocols::moves::Mover::get_input_pose(), protocols::moves::Mover::get_native_pose(), graft_h1_, graft_h2_, graft_h3_, graft_l1_, graft_l2_, graft_l3_, graft_sequence_, protocols::antibody::h3, h3_no_stem_graft_, optimize_sequence_, packonly_after_graft_, rt_min_, sc_min_, protocols::moves::Mover::set_input_pose(), protocols::moves::Mover::set_native_pose(), core::pose::set_ss_from_phipsi(), protocols::antibody::setup_packer_task(), protocols::antibody::start_cdr_loop, tf_, and protocols::antibody::TR().
Referenced by apply().
|
overridevirtual |
Each derived class must specify its name. The class name.
Implements protocols::moves::Mover.
|
private |
References init_from_options(), register_options(), set_default(), setup_objects(), and protocols::moves::Mover::type().
Referenced by GraftCDRLoopsProtocol().
|
private |
References camelid_, graft_l1_, graft_l2_, graft_l3_, core::import_pose::PDB_file, core::import_pose::pose_from_file(), set_benchmark(), set_camelid(), set_camelid_constraints(), set_cst_weight(), set_graft_h1(), set_graft_h2(), set_graft_h3(), set_graft_l1(), set_graft_l2(), set_graft_l3(), set_h3_stem_graft(), protocols::moves::Mover::set_native_pose(), set_packonly_after_graft(), set_stem_optimize(), and protocols::antibody::TR().
Referenced by init().
|
static |
Associates relevant options with the AntibodyModeler class.
Referenced by init().
|
inline |
References benchmark_.
Referenced by init_from_options().
|
inline |
References camelid_.
Referenced by init_from_options().
|
inline |
References camelid_constraints_.
Referenced by init_from_options().
|
inline |
References cst_weight_.
Referenced by init_from_options().
void protocols::antibody::GraftCDRLoopsProtocol::set_default | ( | ) |
Assigns default values to primitive members.
References benchmark_, camelid_, camelid_constraints_, cst_weight_, graft_h1_, graft_h2_, graft_h3_, graft_l1_, graft_l2_, graft_l3_, h3_no_stem_graft_, packonly_after_graft_, rt_min_, sc_min_, stem_optimize_, and protocols::antibody::TR().
Referenced by init().
|
inline |
References graft_h1_.
Referenced by init_from_options().
|
inline |
References graft_h2_.
Referenced by init_from_options().
|
inline |
References graft_h3_.
Referenced by init_from_options().
|
inline |
References graft_l1_.
Referenced by init_from_options().
|
inline |
References graft_l2_.
Referenced by init_from_options().
|
inline |
References graft_l3_.
Referenced by init_from_options().
|
inline |
References h3_no_stem_graft_.
Referenced by init_from_options().
|
inline |
References packonly_after_graft_.
Referenced by init_from_options().
|
inline |
References rt_min_.
|
inline |
References sc_min_.
|
inline |
References stem_optimize_.
Referenced by init_from_options().
|
private |
References ab_info_, ab_t_info_, core::scoring::atom_pair_constraint, core::scoring::chainbreak, core::scoring::get_score_function(), graft_sequence_, core::scoring::overlap_chainbreak, scorefxn_pack_, and tf_.
Referenced by init().
|
overridevirtual |
Show the complete setup of the docking protocol
Reimplemented from protocols::moves::Mover.
References core::conformation::membrane::out.
|
friend |
|
private |
Referenced by apply(), display_constraint_residues(), finalize_setup(), and setup_objects().
|
private |
Referenced by finalize_setup(), and setup_objects().
|
private |
Referenced by finalize_setup(), set_benchmark(), and set_default().
|
private |
Referenced by finalize_setup(), init_from_options(), set_camelid(), and set_default().
|
private |
Referenced by apply(), set_camelid_constraints(), and set_default().
|
private |
Referenced by apply(), and finalize_setup().
|
private |
Referenced by finalize_setup(), set_cst_weight(), and set_default().
|
private |
Referenced by finalize_setup(), set_default(), and set_graft_h1().
|
private |
Referenced by finalize_setup(), set_default(), and set_graft_h2().
|
private |
Referenced by finalize_setup(), set_default(), and set_graft_h3().
|
private |
Referenced by finalize_setup(), init_from_options(), set_default(), and set_graft_l1().
|
private |
Referenced by finalize_setup(), init_from_options(), set_default(), and set_graft_l2().
|
private |
Referenced by finalize_setup(), init_from_options(), set_default(), and set_graft_l3().
|
private |
Referenced by apply(), finalize_setup(), and setup_objects().
|
private |
Referenced by finalize_setup(), set_default(), and set_h3_stem_graft().
|
private |
Referenced by apply(), and finalize_setup().
|
private |
Referenced by finalize_setup(), set_default(), and set_packonly_after_graft().
|
private |
Referenced by finalize_setup(), set_default(), and set_rt_min().
|
private |
Referenced by finalize_setup(), set_default(), and set_sc_min().
|
private |
Referenced by setup_objects().
|
private |
Referenced by apply(), set_default(), and set_stem_optimize().
|
private |
Referenced by finalize_setup(), and setup_objects().