Configuration element to determine the search mode. More...
#include <seqan3/search/configuration/mode.hpp>
Inheritance diagram for seqan3::search_cfg::mode< mode_t >:Public Attributes | |
| mode_t | value |
| The stored config value. | |
Related Functions | |
(Note that these are not member functions.) | |
Type deduction guides | |
| template<typename mode_t > | |
| mode (mode_t) -> mode< remove_cvref_t< mode_t >> | |
| Deduces search mode type from constructor argument. | |
Configuration element to determine the search mode.
This configuration element can be used to determine which hits are supported. Currently these modes are available:
| Mode | Behaviour |
|---|---|
| seqan3::search_cfg::all | Report all hits within error bounds. |
| seqan3::search_cfg::all_best | Report all hits with the lowest number of errors within the bounds. |
| seqan3::search_cfg::best | Report one best hit (hit with lowest error) within bounds. |
| seqan3::search_cfg::strata | Report all hits within best + x errors. |