|
| | AtomPairConstraintsScore (core::Size, core::Real, bool, std::string, core::Size, utility::vector1< std::string >) |
| | Prepare an AtomPair constraint - based score that utilizes some user-defined atoms. More...
|
| |
| | AtomPairConstraintsScore (core::Size, core::Real, bool, std::string, core::Size) |
| | Prepare an AtomPair constraint - based score that utilizes N, C, CA, O && CB atoms. More...
|
| |
| bool | cached_score (FragmentCandidateOP, FragmentScoreMapOP) override |
| | Calculates a score for a given fragment. More...
|
| |
| | AtomBasedConstraintsScore (core::Size, core::Real, bool, core::Size, utility::vector1< std::string >, std::string) |
| | Prepare an atom-based score that utilizes some user-defined atoms. More...
|
| |
| | AtomBasedConstraintsScore (core::Size, core::Real, bool, core::Size, std::string) |
| | Prepare an atom-based score that utilizes the following predefined atoms: N, CA, C, O and CB. More...
|
| |
| void | do_caching (VallChunkOP) override |
| | In this case caching means copying coordinates of relevant atoms from a chunk's pose. More...
|
| |
| void | clean_up () override |
| | Erases the internal array of coordinates. More...
|
| |
| bool | has_atom (core::Size residue_id, core::Size atom_id) |
| | Returns true if a given atom has been successfully cached and one can use its coordinates. More...
|
| |
| numeric::xyzVector< core::Real > | get_atom_coordinates (core::Size residue_id, core::Size atom_id) |
| | Returns coordinates for a given atom. More...
|
| |
| std::map< std::string, core::Size > | get_constrainable_atoms_map () |
| | Returns a map that defines all constrained atoms used by this scoring method. More...
|
| |
| core::Size | get_constrained_atom_id (std::string atom_name) |
| | returns an internal ID assigned to a given atom name More...
|
| |
| std::string | get_constrained_atom_name (core::Size atom_id) |
| | returns a name of a constrained atom when its internal ID is known More...
|
| |
| core::Size | get_query_size () |
| | provides an access to the size of the length of a query sequence More...
|
| |
| | CachingScoringMethod (core::Size priority, core::Real lowest_acceptable_value, bool use_lowest, std::string name) |
| |
| bool | score (FragmentCandidateOP, FragmentScoreMapOP) override |
| |
| | FragmentScoringMethod (core::Size priority, core::Real lowest_acceptable_value, bool use_lowest, std::string name) |
| |
| std::string & | get_score_name () |
| | Returns a name of this scoring method. More...
|
| |
| core::Size | get_id () |
| | Returns an integer index assigned to this scoring method by a scoring manager. More...
|
| |
| void | set_id (core::Size id) |
| | Sets a new integer index for this scoring method. More...
|
| |
| core::Size | get_priority () |
| | Returns a priority of this scoring method. More...
|
| |
| core::Real | get_min_allowed_score () |
| | Returns the lowest acceptable score value for this scoring method. More...
|
| |
| bool | get_use_lowest () |
| | Returns the boolean choice on using the above lowest acceptable score value. More...
|
| |
| void | set_min_allowed_score (core::Real lowest_acceptable_value) |
| | Sets a new value of the lowest acceptable score. More...
|
| |
Scores a fragment with a set of AtomPair constraints.
| protocols::frag_picker::scores::AtomPairConstraintsScore::AtomPairConstraintsScore |
( |
core::Size |
priority, |
|
|
core::Real |
lowest_acceptable_value, |
|
|
bool |
use_lowest, |
|
|
std::string |
constraints_file_name, |
|
|
core::Size |
query_size |
|
) |
| |
Prepare an AtomPair constraint - based score that utilizes N, C, CA, O && CB atoms.
These atoms that will be cached when a new chunk is considered (i.e. at every do_caching() call)
- Parameters
-
| priority | - the priority for this scoring method. The lower the priority, the later the score will be evaluated Because a fragment may be discarded when a score is too low, the most accurate && meaningful scores should have the highest priority |
| lowest_acceptable_value | - a fragment for which this score is below a certain threshold will be discarded |
| constraints_file_name | - from this file AtomPair constraints will be obtained |
| query_size | - the number of residues in the query sequence |
References data_, protocols::frag_picker::scores::AtomBasedConstraintsScore::get_query_size(), and read_constraints().