A CRTP-base that refines bio::alphabet::base and is used by the quality alphabets. More...
#include <bio/alphabet/quality/quality_base.hpp>
Public Types | |
Member types | |
using | phred_type = int8_t |
The integer representation of a quality score assignable with =operator. | |
Public Member Functions | |
Read functions | |
constexpr phred_type | to_phred () const noexcept |
Return the alphabet's value in phred representation. | |
Write functions | |
constexpr derived_type & | assign_phred (phred_type const p) noexcept |
Assign from the numeric phred value. | |
Read functions | |
constexpr char_type | to_char () const noexcept |
Return the letter as a character of char_type. | |
constexpr rank_type | to_rank () const noexcept |
Return the letter's numeric value (rank in the alphabet). | |
Write functions | |
constexpr derived_type & | assign_char (char_type const c) noexcept |
Assign from a character, implicitly converts invalid characters. | |
constexpr derived_type & | assign_rank (rank_type const c) noexcept |
Assign from a numeric value. | |
Static Public Attributes | |
static constexpr size_t | alphabet_size |
The size of the alphabet, i.e. the number of different values it can take. | |
Protected Types | |
Member types | |
using | char_type = std::conditional_t< std::same_as< char, void >, char, char > |
The char representation; conditional needed to make semi alphabet definitions legal. | |
using | rank_type = meta::detail::min_viable_uint_t< size - 1 > |
The type of the alphabet when represented as a number (e.g. via to_rank()). | |
Static Protected Attributes | |
static constexpr std::array< rank_type, 256 > | char_to_rank |
Char to rank conversion table. | |
static constexpr std::array< rank_type, 256 > | phred_to_rank |
Phred to rank conversion table. | |
static constexpr std::array< char_type, alphabet_size > | rank_to_char |
Rank to char conversion table. | |
static constexpr std::array< phred_type, alphabet_size > | rank_to_phred |
Rank to phred conversion table. | |
Friends | |
constexpr derived_type & | tag_invoke (custom::assign_phred_to, phred_type const p, derived_type &alph) noexcept |
tag_invoke() wrapper around member. | |
constexpr phred_type | tag_invoke (custom::to_phred, derived_type const alph) noexcept |
tag_invoke() wrapper around member. | |
A CRTP-base that refines bio::alphabet::base and is used by the quality alphabets.
derived_type | The CRTP parameter type. |
size | The size of the alphabet. |
|
inlineconstexprnoexceptinherited |
Assign from a character, implicitly converts invalid characters.
c | The character to be assigned. |
Provides an implementation for bio::alphabet::assign_char_to, required to model bio::alphabet::alphabet.
Constant.
Guaranteed not to throw.
|
inlineconstexprnoexcept |
Assign from the numeric phred value.
Satisfies the bio::alphabet::writable_quality::assign_phred() requirement via the bio::alphabet::assign_rank() wrapper.
Constant.
|
inlineconstexprnoexceptinherited |
Assign from a numeric value.
c | The rank to be assigned. |
Provides an implementation for bio::alphabet::assign_rank_to, required to model bio::alphabet::semialphabet.
Constant.
Guaranteed not to throw.
|
inlineconstexprnoexceptinherited |
Return the letter as a character of char_type.
Provides an implementation for bio::alphabet::to_char, required to model bio::alphabet::alphabet.
Constant.
Guaranteed not to throw.
|
inlineconstexprnoexceptinherited |
Return the letter's numeric value (rank in the alphabet).
Provides an implementation for bio::alphabet::to_rank, required to model bio::alphabet::semialphabet.
Constant.
Guaranteed not to throw.
|
staticconstexprprotected |
Char to rank conversion table.
|
staticconstexprprotected |
Phred to rank conversion table.
|
staticconstexprprotected |
Rank to char conversion table.
|
staticconstexprprotected |
Rank to phred conversion table.