7 #ifndef BEST_MATCH_PAIR_HPP_ 8 #define BEST_MATCH_PAIR_HPP_ 10 #include "boost/assert.hpp" 17 static Score
default_score() {
return std::numeric_limits<Score>::min();}
35 bool is_acceptable(
const score_type min_score,
const bool require_best)
const {
39 ( ! require_best || score1_ !=
score2_ )
49 bool combine(id_type
const&
id,
const score_type score) {
ID id1_
Definition: best_match_pair.hpp:97
id_type const & id2() const
Definition: best_match_pair.hpp:30
Definition: best_match_pair.hpp:16
ID id_type
Definition: best_match_pair.hpp:19
Score score1_
Definition: best_match_pair.hpp:98
bool combine(Best_match_pair const &bmp)
Definition: best_match_pair.hpp:71
ID id2_
Definition: best_match_pair.hpp:99
score_type score2() const
Definition: best_match_pair.hpp:33
Score score2_
Definition: best_match_pair.hpp:100
Main namespace of vdj_pipe library.
Definition: keywords_variable.hpp:11
Best_match_pair()
Definition: best_match_pair.hpp:22
static Score default_score()
Definition: best_match_pair.hpp:17
bool is_acceptable(const score_type min_score, const bool require_best) const
Definition: best_match_pair.hpp:35
id_type const & id1() const
Definition: best_match_pair.hpp:29
score_type score1() const
Definition: best_match_pair.hpp:32
Score score_type
Definition: best_match_pair.hpp:20
bool combine(id_type const &id, const score_type score)
Definition: best_match_pair.hpp:49
bool has_score() const
Definition: best_match_pair.hpp:31