Rosetta 3.5
|
#include <SequenceClaimer.hh>
Public Member Functions | |
SequenceClaimer () | |
SequenceClaimer (std::string const &sequence, std::string const &rsd_type_set_identifier, std::string label) | |
virtual TopologyClaimerOP | clone () const |
clone it! More... | |
virtual void | generate_sequence_claims (DofClaims &) |
generate claims that affect the sequence of the pose More... | |
virtual void | generate_claims (DofClaims &) |
is called after all round1 claims have been approved or retracted – additional claims can be issued in this round if this Sequence has been moved from position 1 — needs to issue a fixed CUT in the fold-tree More... | |
virtual void | initialize_residues (core::pose::Pose &, SequenceClaimOP init_claim, DofClaims &failed_to_init) |
initialize sequence ( for approved sequence claims given as init_claim ) Claimer searches init_claims for claims owned by *this More... | |
virtual void | initialize_dofs (core::pose::Pose &pose, DofClaims const &init_claims, DofClaims &failed_to_init) |
initialize dofs – e.g., torsions, jumps – Claimer searches init_claims for claims owned by *this More... | |
virtual std::string | type () const |
type() is specifying the output name of the TopologyClaimer More... | |
core::Size | offset () |
void | set_sequence (std::string const &str) |
![]() | |
virtual | ~TopologyClaimer () |
Automatically generated virtual destructor for class deriving directly from ReferenceCount. More... | |
TopologyClaimer () | |
TopologyClaimer (weights::AbinitioMoverWeightOP weight) | |
construct with weight-set ( how important is mover for different abinitio stages ? ) More... | |
virtual void | read (std::istream &) |
read definition of Claimer from setup file, i.e., a CLAIMER <type> ... END_CLAIMER block More... | |
virtual void | finalize_claims (DofClaims &) |
is called after all round1 claims have been approved or retracted – additional claims can be issued in this round More... | |
virtual bool | allow_claim (DofClaim const &) |
allow a claim from a foreign Claimer More... | |
virtual void | switch_to_fullatom (core::pose::Pose &, utility::vector1< bool >) const |
has this Claimer some side chain conformations to add? starts with bNeedToRepack true for all residues... if you have a sidechain —> copy it to pose and set needtoRepack false for this residue More... | |
virtual void | manipulate_cut_bias (utility::vector1< core::Real > &) |
multiply your bias to this – if its zero don't change that, i.e., multiply only this is used during fold-tree generation to set the cut-points. it starts with 1.0 for all residues. Fragments can add their loop-fraction More... | |
virtual bool | accept_declined_claim (DofClaim const &) |
notification of declined claims: update your internal representation (e.g., movemap ) to remember this ! / return false – if you can't live without this claim being accepted. ( e.g., RigidChunks ... ) More... | |
virtual void | claim_accepted (DofClaimOP my_claim) |
this claim of yours was accepted.... I so far haven't done anything with this... might go away. More... | |
virtual void | add_constraints (core::pose::Pose &) const |
add constraints to pose... might make this stage dependent as with movers... More... | |
virtual core::fragment::FragSetCOP | loop_frags (core::kinematics::MoveMap &) const |
return fragments that can be used for loop-sampling... unfortunately some loop-samplers need fragments, rather then fragmovers (e.g. short-loop closure since it remaps them on a short pose containing only the loop-residues. ) overloaded e.g., by LoopFragmentClaimer.. returns a movemap and fragset good for loop-sampling More... | |
virtual bool | passes_filter (core::pose::Pose const &, abinitio::StageID, core::Real, std::ostringstream &) |
claimers can add movers to the RandomMover (Container). add your moves, make it dependent on stage if you want to. So far this is called only by abinitio... if you don't want to do anything special — don't overload this method! default: adds mover given by virtual call get_mover() with stage-dependent weight given by abinitio_mover_weight_ More... | |
virtual void | add_mover (moves::RandomMover &, core::pose::Pose const &, abinitio::StageID, core::scoring::ScoreFunction const &, core::Real) |
claimers can add movers to the RandomMover (Container). add your moves, make it dependent on stage if you want to. So far this is called only by abinitio... if you don't want to do anything special — don't overload this method! default: adds mover given by virtual call get_mover() with stage-dependent weight given by abinitio_mover_weight_ More... | |
void | set_mover_weight (weights::AbinitioMoverWeightOP wset) |
weights::AbinitioMoverWeight & | mover_weight () |
void | read_mover_weight (std::istream &is) |
read mover weight from Stream. - so far recognizes: LargeStage, SmallStage, SmoothStage, AllStage More... | |
virtual void | adjust_relax_movemap (core::kinematics::MoveMap &) const |
void | set_broker (TopologyBrokerCAP ptr) |
don't use this — it is called by TopologyBroker add_claim only More... | |
TopologyBroker const & | broker () const |
return the broker we are collaborating with More... | |
virtual void | new_decoy () |
a new decoy — random choices to be made ? make them here More... | |
virtual void | new_decoy (core::pose::Pose const &) |
an input pose is given, i.e., a starting structure for resampling don't make random choices, base choices on given pose More... | |
std::string const & | label () const |
void | set_label (std::string const &str) |
virtual void | receive_message (ClaimerMessage &) |
Static Public Member Functions | |
static std::string | _static_type_name () |
Protected Member Functions | |
virtual bool | read_tag (std::string tag, std::istream &) |
virtual void | init_after_reading () |
![]() | |
virtual moves::MoverOP | get_mover (core::pose::Pose const &) const |
what is your mover ... called by add_mover — overload this or add_mover if you have movers too supply More... | |
virtual void | set_defaults () |
Private Types | |
typedef TopologyClaimer | Parent |
Private Attributes | |
std::string | sequence_ |
std::string | annotated_sequence_ |
std::string | rsd_type_set_ |
core::Size | offset_ |
core::Size | nr_res_ |
|
private |
protocols::topology_broker::SequenceClaimer::SequenceClaimer | ( | ) |
Referenced by clone().
protocols::topology_broker::SequenceClaimer::SequenceClaimer | ( | std::string const & | sequence, |
std::string const & | rsd_type_set_identifier, | ||
std::string | label | ||
) |
References protocols::topology_broker::TopologyClaimer::set_label(), and set_sequence().
|
inlinestatic |
Referenced by type().
|
virtual |
clone it!
Implements protocols::topology_broker::TopologyClaimer.
Reimplemented in protocols::topology_broker::MetalloClaimer, and protocols::topology_broker::DensityScoringClaimer.
References SequenceClaimer().
|
virtual |
is called after all round1 claims have been approved or retracted – additional claims can be issued in this round if this Sequence has been moved from position 1 — needs to issue a fixed CUT in the fold-tree
Reimplemented from protocols::topology_broker::TopologyClaimer.
Reimplemented in protocols::topology_broker::MetalloClaimer, and protocols::topology_broker::DensityScoringClaimer.
References protocols::topology_broker::DofClaim::INIT, nr_res_, and offset().
Referenced by protocols::topology_broker::DensityScoringClaimer::generate_claims(), and protocols::topology_broker::MetalloClaimer::generate_claims().
|
virtual |
generate claims that affect the sequence of the pose
Reimplemented from protocols::topology_broker::TopologyClaimer.
Reimplemented in protocols::topology_broker::MetalloClaimer.
References protocols::topology_broker::DofClaim::INIT, protocols::topology_broker::TopologyClaimer::label(), and nr_res_.
Referenced by protocols::topology_broker::MetalloClaimer::generate_sequence_claims().
|
protectedvirtual |
Reimplemented from protocols::topology_broker::TopologyClaimer.
Reimplemented in protocols::topology_broker::MetalloClaimer, and protocols::topology_broker::DensityScoringClaimer.
|
virtual |
initialize dofs – e.g., torsions, jumps – Claimer searches init_claims for claims owned by *this
Reimplemented from protocols::topology_broker::TopologyClaimer.
Reimplemented in protocols::topology_broker::MetalloClaimer, and protocols::topology_broker::DensityScoringClaimer.
References protocols::topology_broker::DofClaim::BB, protocols::topology_broker::TopologyClaimer::initialize_dofs(), nr_res_, offset(), and tr().
Referenced by protocols::topology_broker::DensityScoringClaimer::initialize_dofs(), and protocols::topology_broker::MetalloClaimer::initialize_dofs().
|
virtual |
initialize sequence ( for approved sequence claims given as init_claim ) Claimer searches init_claims for claims owned by *this
Reimplemented from protocols::topology_broker::TopologyClaimer.
Reimplemented in protocols::topology_broker::MetalloClaimer, and protocols::topology_broker::DensityScoringClaimer.
References core::pose::Pose::annotated_sequence(), annotated_sequence_, core::conformation::Residue::is_protein(), core::pose::make_pose_from_sequence(), nr_res_, offset_, core::pose::Pose::residue(), rsd_type_set_, sequence_, core::pose::Pose::set_omega(), core::pose::Pose::set_phi(), core::pose::Pose::set_psi(), core::pose::Pose::total_residue(), and tr().
Referenced by protocols::topology_broker::DensityScoringClaimer::initialize_residues(), and protocols::topology_broker::MetalloClaimer::initialize_residues().
|
inline |
References offset_.
Referenced by generate_claims(), and initialize_dofs().
|
protectedvirtual |
Reimplemented from protocols::topology_broker::TopologyClaimer.
Reimplemented in protocols::topology_broker::MetalloClaimer, and protocols::topology_broker::DensityScoringClaimer.
References core::sequence::read_fasta_file(), protocols::topology_broker::TopologyClaimer::read_tag(), sequence_, set_sequence(), and tr().
Referenced by protocols::topology_broker::DensityScoringClaimer::read_tag(), and protocols::topology_broker::MetalloClaimer::read_tag().
void protocols::topology_broker::SequenceClaimer::set_sequence | ( | std::string const & | str) |
References core::pose::Pose::annotated_sequence(), annotated_sequence_, core::pose::make_pose_from_sequence(), nr_res_, rsd_type_set_, sequence_, protocols::kinmatch::str(), core::pose::Pose::total_residue(), and tr().
Referenced by protocols::topology_broker::MetalloClaimer::init_after_reading(), read_tag(), and SequenceClaimer().
|
inlinevirtual |
type() is specifying the output name of the TopologyClaimer
Implements protocols::topology_broker::TopologyClaimer.
Reimplemented in protocols::topology_broker::MetalloClaimer, and protocols::topology_broker::DensityScoringClaimer.
References _static_type_name().
Referenced by init_after_reading().
|
private |
Referenced by initialize_residues(), and set_sequence().
|
private |
Referenced by generate_claims(), generate_sequence_claims(), init_after_reading(), initialize_dofs(), initialize_residues(), and set_sequence().
|
private |
Referenced by initialize_residues(), and offset().
|
private |
Referenced by initialize_residues(), and set_sequence().
|
private |
Referenced by initialize_residues(), read_tag(), and set_sequence().