88 constexpr
rna5(
rna5 const &) =
default;
90 constexpr
rna5 & operator=(
rna5 const &) =
default;
91 constexpr
rna5 & operator=(
rna5 &&) =
default;
117 static constexpr std::array<rank_type, 256> char_to_rank = dna5::char_to_rank;
120 static const std::array<rna5, value_size> complement_table;
143 constexpr
rna5 operator""_rna5(
char const c) noexcept
162 for (
size_t i = 0; i < n; ++i)
173 constexpr std::array<rna5, rna5::value_size> rna5::complement_table
The five letter RNA alphabet of A,C,G,U and the unknown character N.
Definition: rna5.hpp:71
alphabet_concept && assign_char(alphabet_concept &&alph, char_type const chr)
Returns the alphabet letter's value in character representation.
The main SeqAn3 namespace.
Definition: aligned_sequence_concept.hpp:58
Contains seqan3::dna5, container aliases and string literals.
The five letter DNA alphabet of A,C,G,T and the unknown character N.
Definition: dna5.hpp:73
constexpr rna5 & assign_rank(rank_type const c) noexcept
Assign from a numeric value.
Definition: alphabet_base.hpp:189
static detail::min_viable_uint_t< size > constexpr value_size
The size of the alphabet, i.e. the number of different values it can take.
Definition: alphabet_base.hpp:198
Provides seqan3::nucleotide_base.
constexpr rna5(dna5 const &r) noexcept
Allow implicit construction from dna/rna of the same size.
Definition: rna5.hpp:97
char_t char_type
The type of the alphabet when converted to char (e.g. via to_char()).
Definition: alphabet_base.hpp:87
A CRTP-base that refines seqan3::alphabet_base and is used by the nucleotides.
Definition: nucleotide_base.hpp:65
std::vector< rna5 > rna5_vector
Alias for an std::vector of seqan3::rna5.
Definition: rna5.hpp:129