 |
SeqAn3
3.0.1
The Modern C++ library for sequence analysis.
|
|
Go to the documentation of this file.
57 constexpr
phred63() noexcept =
default;
89 constexpr
phred63 operator""_phred63(
char const c) noexcept
109 for (
size_t i = 0; i < n; ++i)
110 r[i].assign_char(s[i]);
Quality type for traditional Sanger and modern Illumina Phred scores (full range).
Definition: phred63.hpp:41
constexpr phred63(phred_type const p)
Construct from phred value.
Definition: phred63.hpp:65
~phred63() noexcept=default
Defaulted.
constexpr phred63 & operator=(phred63 const &) noexcept=default
Defaulted.
int8_t phred_type
The integer representation of a quality score assignable with =operator.
Definition: quality_base.hpp:35
Provides seqan3::phred42 quality scores.
constexpr derived_type & assign_char(char_type const c) noexcept
Assign from a character, implicitly converts invalid characters.
Definition: alphabet_base.hpp:140
The main SeqAn3 namespace.
Definition: aligned_sequence_concept.hpp:36
static constexpr phred_type offset_phred
The projection offset between phred and rank score representation.
Definition: phred63.hpp:75
static constexpr char_type offset_char
The projection offset between char and rank score representation.
Definition: phred63.hpp:78
constexpr phred63() noexcept=default
Defaulted.
A CRTP-base that refines seqan3::alphabet_base and is used by the quality alphabets.
Definition: quality_base.hpp:28