 |
SeqAn3
3.0.1
The Modern C++ library for sequence analysis.
|
|
Go to the documentation of this file.
66 constexpr
dna15() noexcept =
default;
67 constexpr
dna15(
dna15 const &) noexcept =
default;
71 ~dna15() noexcept =
default;
76 template <std::same_as<rna15> t>
77 constexpr
dna15(t
const & r) noexcept
120 ret[ rank_to_char[rnk] ] = rnk;
121 ret[
to_lower(rank_to_char[rnk])] = rnk;
125 ret[
'U'] = ret[
'T']; ret[
'u'] = ret[
't'];
155 constexpr
dna15 operator""_dna15(
char const c) noexcept
174 for (
size_t i = 0; i < n; ++i)
175 r[i].assign_char(s[i]);
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
constexpr dna15 & operator=(dna15 const &) noexcept=default
Defaulted.
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
The 15 letter RNA alphabet, containing all IUPAC smybols minus the gap.
Definition: rna15.hpp:48
The main SeqAn3 namespace.
Definition: aligned_sequence_concept.hpp:36
constexpr dna15(t const &r) noexcept
Allow implicit construction from dna/rna of the same size.
Definition: dna15.hpp:77
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 dna15 & assign_rank(rank_type const c) noexcept
Assign from a numeric value.
Definition: alphabet_base.hpp:165
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:81
~dna15() noexcept=default
Defaulted.
constexpr dna15() noexcept=default
Defaulted.