SeqAn3 3.4.0-rc.4
The Modern C++ library for sequence analysis.
|
Configuration element that represents the number or rate of total errors. More...
#include <seqan3/search/configuration/max_error.hpp>
Public Member Functions | |
Constructors, destructor and assignment | |
max_error_total ()=default | |
Defaulted. | |
max_error_total (max_error_total const &)=default | |
Defaulted. | |
max_error_total (max_error_total &&)=default | |
Defaulted. | |
max_error_total & | operator= (max_error_total const &)=default |
Defaulted. | |
max_error_total & | operator= (max_error_total &&)=default |
Defaulted. | |
~max_error_total ()=default | |
Defaulted. | |
constexpr | max_error_total (error_count error) |
Initialises the total error with the given seqan3::search_cfg::error_count. | |
constexpr | max_error_total (error_rate error) |
Initialises the total error with the given seqan3::search_cfg::error_rate. | |
Public Attributes | |
std::variant< error_count, error_rate > | error {error_count{0}} |
The error count or error rate. | |
Configuration element that represents the number or rate of total errors.
This configuration element can be used to determine the number or rate of total errors that are supported.
|
no-apiinlineexplicitconstexpr |
Initialises the total error with the given seqan3::search_cfg::error_count.
[in] | error | The maximal number of total errors allowed in the search. |
|
no-apiinlineexplicitconstexpr |
Initialises the total error with the given seqan3::search_cfg::error_rate.
[in] | error | The maximal total error rate allowed in the search. |