 |
SeqAn3
3.0.1
The Modern C++ library for sequence analysis.
|
|
Go to the documentation of this file.
64 constexpr
rna15() noexcept =
default;
65 constexpr
rna15(
rna15 const &) noexcept =
default;
69 ~rna15() noexcept =
default;
75 #if SEQAN3_WORKAROUND_GCC_90897
133 constexpr
rna15 operator""_rna15(
char const c) noexcept
152 for (
size_t i = 0; i < n; ++i)
153 r[i].assign_char(s[i]);
Provides seqan3::dna15, container aliases and string literals.
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:174
The 15 letter DNA alphabet, containing all IUPAC smybols minus the gap.
Definition: dna15.hpp:48
A CRTP-base that refines seqan3::alphabet_base and is used by the nucleotides.
Definition: nucleotide_base.hpp:40
constexpr derived_type & assign_char(char_type const c) noexcept
Assign from a character, implicitly converts invalid characters.
Definition: alphabet_base.hpp:140
constexpr rna15() noexcept=default
Defaulted.
The 15 letter RNA alphabet, containing all IUPAC smybols minus the gap.
Definition: rna15.hpp:48
constexpr rna15 & operator=(rna15 const &) noexcept=default
Defaulted.
The main SeqAn3 namespace.
Definition: aligned_sequence_concept.hpp:36
Provides seqan3::nucleotide_base.
std::conditional_t< std::same_as< char, void >, char, char > char_type
The char representation; conditional needed to make semi alphabet definitions legal.
Definition: alphabet_base.hpp:60
constexpr rna15(dna15 const &r) noexcept
Allow implicit construction from dna/rna of the same size.
Definition: rna15.hpp:74
constexpr rna15 & assign_rank(rank_type const c) noexcept
Assign from a numeric value.
Definition: alphabet_base.hpp:165
~rna15() noexcept=default
Defaulted.