BioC++ core-0.7.0
The Modern C++ libraries for Bioinformatics.
 
Loading...
Searching...
No Matches
bio::alphabet::phred68legacy Class Reference

Quality type for Solexa and deprecated Illumina formats.. More...

#include <bio/alphabet/quality/phred68legacy.hpp>

+ Inheritance diagram for bio::alphabet::phred68legacy:

Public Types

Member types
using phred_type = int8_t
 The integer representation of a quality score assignable with =operator.
 

Public Member Functions

Constructors, destructor and assignment
constexpr phred68legacy () noexcept=default
 Defaulted.
 
constexpr phred68legacy (phred68legacy const &) noexcept=default
 Defaulted.
 
constexpr phred68legacy (phred68legacy &&) noexcept=default
 Defaulted.
 
constexpr phred68legacyoperator= (phred68legacy const &) noexcept=default
 Defaulted.
 
constexpr phred68legacyoperator= (phred68legacy &&) noexcept=default
 Defaulted.
 
 ~phred68legacy () noexcept=default
 Defaulted.
 
constexpr phred68legacy (phred_type const p)
 Construct from phred value.
 
Read functions
constexpr phred_type to_phred () const noexcept
 Return the alphabet's value in phred representation.
 
Write functions
constexpr phred68legacyassign_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 = size
 The size of the alphabet, i.e. the number of different values it can take.
 
Member variables.
static constexpr phred_type offset_phred {-5}
 The projection offset between phred and rank score representation.
 
static constexpr char_type offset_char {';'}
 The projection offset between char and rank score representation.
 

Protected Types

Member types
using char_type = std::conditional_t< std::same_as< char_t, void >, char, char_t >
 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_sizerank_to_char
 Rank to char conversion table.
 
static constexpr std::array< phred_type, alphabet_sizerank_to_phred
 Rank to phred conversion table.
 

Related Functions

(Note that these are not member functions.)

Literals
consteval phred68legacy operator""_phred68legacy (char const c)
 The bio::alphabet::phred68legacy char literal.
 
template<meta::detail::literal_buffer_string str>
constexpr std::vector< phred68legacyoperator""_phred68legacy ()
 The bio::alphabet::phred68legacy string literal.
 

Detailed Description

Quality type for Solexa and deprecated Illumina formats.

.

The phred68legacy quality alphabet represents the -5-based phred score range [-5..62] mapped to the ASCII range [';' .. '~']. It represents the Solexa and the Illumina [1.0;1.8[ standard.

int main()
{
phred.assign_phred(-2);
fmt::print("{}\n", (int) phred.to_phred()); // -2
fmt::print("{}\n", phred.to_char()); // '>'
fmt::print("{}\n", (int) phred.to_rank()); // 3
}
constexpr char_type to_char() const noexcept
Return the letter as a character of char_type.
Definition: base.hpp:104
constexpr rank_type to_rank() const noexcept
Return the letter's numeric value (rank in the alphabet).
Definition: base.hpp:124
Quality type for Solexa and deprecated Illumina formats..
Definition: phred68legacy.hpp:43
constexpr derived_type & assign_phred(phred_type const p) noexcept
Assign from the numeric phred value.
Definition: quality_base.hpp:102
constexpr phred_type to_phred() const noexcept
Return the alphabet's value in phred representation.
Definition: quality_base.hpp:85
Core alphabet concept and free function/type trait wrappers.
Provides bio::alphabet::phred68legacy quality scores.

Member Function Documentation

◆ assign_char()

template<typename derived_type , size_t size, typename char_t = char>
constexpr derived_type & bio::alphabet::base< derived_type, size, char_t >::assign_char ( char_type const  c)
inlineconstexprnoexceptinherited

Assign from a character, implicitly converts invalid characters.

Parameters
cThe character to be assigned.

Provides an implementation for bio::alphabet::assign_char_to, required to model bio::alphabet::alphabet.

Complexity

Constant.

Exceptions

Guaranteed not to throw.

◆ assign_phred()

constexpr phred68legacy & bio::alphabet::quality_base< phred68legacy , size >::assign_phred ( phred_type const  p)
inlineconstexprnoexceptinherited

Assign from the numeric phred value.

Satisfies the bio::alphabet::writable_quality::assign_phred() requirement via the bio::alphabet::assign_rank() wrapper.

Complexity

Constant.

◆ assign_rank()

template<typename derived_type , size_t size, typename char_t = char>
constexpr derived_type & bio::alphabet::base< derived_type, size, char_t >::assign_rank ( rank_type const  c)
inlineconstexprnoexceptinherited

Assign from a numeric value.

Parameters
cThe rank to be assigned.

Provides an implementation for bio::alphabet::assign_rank_to, required to model bio::alphabet::semialphabet.

Complexity

Constant.

Exceptions

Guaranteed not to throw.

◆ to_char()

template<typename derived_type , size_t size, typename char_t = char>
constexpr char_type bio::alphabet::base< derived_type, size, char_t >::to_char ( ) const
inlineconstexprnoexceptinherited

Return the letter as a character of char_type.

Provides an implementation for bio::alphabet::to_char, required to model bio::alphabet::alphabet.

Complexity

Constant.

Exceptions

Guaranteed not to throw.

◆ to_rank()

template<typename derived_type , size_t size, typename char_t = char>
constexpr rank_type bio::alphabet::base< derived_type, size, char_t >::to_rank ( ) const
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.

Complexity

Constant.

Exceptions

Guaranteed not to throw.

Friends And Related Function Documentation

◆ operator""_phred68legacy() [1/2]

template<meta::detail::literal_buffer_string str>
constexpr std::vector< phred68legacy > operator""_phred68legacy ( )
related

The bio::alphabet::phred68legacy string literal.

Returns
std::vector<bio::alphabet::phred68legacy>

You can use this string literal to easily create a std::vector<bio::alphabet::phred68legacy>:

#include <algorithm>
int main()
{
using namespace bio::alphabet::literals;
// directly assign to a std::vector<phred68legacy> using a string literal
std::vector<bio::alphabet::phred68legacy> qual_vec = ";>?a"_phred68legacy;
// This is the same as a sequence of char literals:
std::vector<bio::alphabet::phred68legacy> qual_vec2{';'_phred68legacy,
'>'_phred68legacy,
'?'_phred68legacy,
'a'_phred68legacy};
fmt::print("{}\n", std::ranges::equal(qual_vec, qual_vec2)); // prints 1 (true)
}
T equal(T... args)
An inline namespace for alphabet literals. It exists to safely allow using namespace.
Definition: aa10li.hpp:183

◆ operator""_phred68legacy() [2/2]

consteval phred68legacy operator""_phred68legacy ( char const  c)
related

The documentation for this class was generated from the following file: