|
SeqAn3 3.4.1-rc.1
The Modern C++ library for sequence analysis.
|
The underlying type of seqan3::views::trim_quality. More...
#include <seqan3/alphabet/views/trim_quality.hpp>
Public Member Functions | |
| template<std::ranges::input_range irng_t, typename threshold_t > | |
| constexpr auto | operator() (irng_t &&irange, threshold_t const threshold) const |
| Trim based on minimum Phred score. | |
| template<typename threshold_t > | |
| constexpr auto | operator() (threshold_t const threshold) const |
| Store the argument and return a range adaptor closure object. | |
The underlying type of seqan3::views::trim_quality.
Under the hood, this delegates to std::views::take_while.
|
inlineconstexpr |
Trim based on minimum Phred score.
| irng_t | The type of the range being processed. See seqan3::views::trim_quality for requirements. |
| irange | The range being processed. |
| threshold | The minimum quality as a Phred score [integral type]. |