47class rna15 :
public nucleotide_base<rna15, 15>
51 using base_t = nucleotide_base<rna15, 15>;
57 friend base_t::base_t;
64 constexpr rna15() noexcept = default;
67 constexpr
rna15 & operator=(
rna15 const &) noexcept = default;
68 constexpr
rna15 & operator=(
rna15 &&) noexcept = default;
81 constexpr
rna15(t const & r) noexcept
90 rank_to_char_table[
alphabet_size]{
'A',
'B',
'C',
'D',
'G',
'H',
'K',
'M',
'N',
'R',
'S',
'U',
'V',
'W',
'Y'};
95 return dna15::rank_complement(rank);
101 return rank_to_char_table[rank];
107 return dna15::char_to_rank(chr);
120using rna15_vector = std::vector<rna15>;
142constexpr rna15
operator""_rna15(
char const c)
noexcept
144 return rna15{}.assign_char(c);
161 for (
size_t i = 0; i < n; ++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
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 15 letter DNA alphabet, containing all IUPAC smybols minus the gap.
Definition dna15.hpp:48
constexpr rna15() noexcept=default
Defaulted.
std::vector< rna15 > rna15_vector
Alias for a std::vector of seqan3::rna15.
Definition rna15.hpp:147
Provides seqan3::dna15, container aliases and string literals.
constexpr auto alphabet_size
A type trait that holds the size of a (semi-)alphabet.
Definition alphabet/concept.hpp:834
The SeqAn namespace for literals.
The main SeqAn3 namespace.
Definition aligned_sequence_concept.hpp:26
SeqAn specific customisations in the standard namespace.
Provides seqan3::nucleotide_base.