66 constexpr dna5() noexcept = default;
67 constexpr
dna5(
dna5 const &) noexcept = default;
69 constexpr
dna5 & operator=(
dna5 const &) noexcept = default;
70 constexpr
dna5 & operator=(
dna5 &&) noexcept = default;
71 ~
dna5() noexcept = default;
83 constexpr
dna5(t const & r) noexcept
105 return rank_complement_table[rank];
111 return rank_to_char_table[rank];
118 return char_to_rank_table[
static_cast<index_t
>(chr)];
131 ret[rank_to_char_table[rnk]] = rnk;
132 ret[
to_lower(rank_to_char_table[rnk])] = rnk;
158inline namespace literals
175constexpr dna5 operator""_dna5(
char const c)
noexcept
194 for (
size_t i = 0; i < n; ++i)
195 r[i].assign_char(s[i]);
constexpr derived_type & assign_char(char_type const chr) noexcept
Assign from a character, implicitly converts invalid characters.
Definition alphabet_base.hpp:160
detail::min_viable_uint_t< size - 1 > rank_type
The type of the alphabet when represented as a number (e.g. via to_rank()).
Definition alphabet_base.hpp:77
static constexpr detail::min_viable_uint_t< size > alphabet_size
The size of the alphabet, i.e. the number of different values it can take.
Definition alphabet_base.hpp:196
std::conditional_t< std::same_as< char_t, void >, char, char_t > char_type
The char representation; conditional needed to make semi alphabet definitions legal.
Definition alphabet_base.hpp:69
constexpr derived_type & assign_rank(rank_type const c) noexcept
Assign from a numeric value.
Definition alphabet_base.hpp:184
The five letter DNA alphabet of A,C,G,T and the unknown character N.
Definition dna5.hpp:48
constexpr dna5() noexcept=default
Defaulted.
A CRTP-base that refines seqan3::alphabet_base and is used by the nucleotides.
Definition nucleotide_base.hpp:41
The five letter RNA alphabet of A,C,G,U and the unknown character N.
Definition rna5.hpp:46
The main SeqAn3 namespace.
Definition aligned_sequence_concept.hpp:26
constexpr char_type to_lower(char_type const c) noexcept
Converts 'A'-'Z' to 'a'-'z' respectively; other characters are returned as is.
Definition transform.hpp:74
SeqAn specific customisations in the standard namespace.
Provides seqan3::nucleotide_base.