SeqAn3 3.4.0-rc.4
The Modern C++ library for sequence analysis.
|
Configuration element that represents the number or rate of deletion errors. More...
#include <seqan3/search/configuration/max_error.hpp>
Public Member Functions | |
Constructors, destructor and assignment | |
max_error_deletion ()=default | |
Defaulted. | |
max_error_deletion (max_error_deletion const &)=default | |
Defaulted. | |
max_error_deletion (max_error_deletion &&)=default | |
Defaulted. | |
max_error_deletion & | operator= (max_error_deletion const &)=default |
Defaulted. | |
max_error_deletion & | operator= (max_error_deletion &&)=default |
Defaulted. | |
~max_error_deletion ()=default | |
Defaulted. | |
constexpr | max_error_deletion (error_count error) |
Initialises the deletion error with the given seqan3::search_cfg::error_count. | |
constexpr | max_error_deletion (error_rate error) |
Initialises the deletion 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 deletion errors.
This configuration element can be used to determine the number or rate of deletion errors that are supported. A deletion corresponds to a base deleted from the query sequence that does occur in the text. Deletions at the beginning and at the end of the sequence are not considered during a search.
|
no-apiinlineexplicitconstexpr |
Initialises the deletion error with the given seqan3::search_cfg::error_count.
[in] | error | The maximal number of deletion errors allowed in the search. |
|
no-apiinlineexplicitconstexpr |
Initialises the deletion error with the given seqan3::search_cfg::error_rate.
[in] | error | The maximal error rate for deletions allowed in the search. |