SeqAn3 3.3.0
The Modern C++ library for sequence analysis.
|
Configuration element that represents the number or rate of insertion errors. More...
#include <seqan3/search/configuration/max_error.hpp>
Public Member Functions | |
Constructors, destructor and assignment | |
max_error_insertion ()=default | |
Defaulted. | |
max_error_insertion (max_error_insertion const &)=default | |
Defaulted. | |
max_error_insertion (max_error_insertion &&)=default | |
Defaulted. | |
max_error_insertion & | operator= (max_error_insertion const &)=default |
Defaulted. | |
max_error_insertion & | operator= (max_error_insertion &&)=default |
Defaulted. | |
~max_error_insertion ()=default | |
Defaulted. | |
constexpr | max_error_insertion (error_count error) |
Initialises the insertion error with the given seqan3::search_cfg::error_count. | |
constexpr | max_error_insertion (error_rate error) |
Initialises the insertion 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 insertion errors.
This configuration element can be used to determine the number or rate of insertion errors that are supported. An insertion corresponds to a base inserted into the query that does not occur in the text at the position.
|
no-apiinlineexplicitconstexpr |
Initialises the insertion error with the given seqan3::search_cfg::error_count.
[in] | error | The maximal number of insertion errors allowed in the search. |
|
no-apiinlineexplicitconstexpr |
Initialises the insertion error with the given seqan3::search_cfg::error_rate.
[in] | error | The maximal error rate for insertions allowed in the search. |