 |
SeqAn3
3.0.1
The Modern C++ library for sequence analysis.
|
|
Go to the documentation of this file.
65 constexpr
dna4() noexcept =
default;
66 constexpr
dna4(
dna4 const &) noexcept =
default;
67 constexpr
dna4(
dna4 &&) noexcept =
default;
70 ~dna4() noexcept =
default;
75 template <std::same_as<rna4> t>
76 constexpr
dna4(t
const & r) noexcept
104 ret[ rank_to_char[rnk] ] = rnk;
105 ret[
to_lower(rank_to_char[rnk])] = rnk;
109 ret[
'U'] = ret[
'T']; ret[
'u'] = ret[
't'];
112 ret[
'R'] = ret[
'A']; ret[
'r'] = ret[
'A'];
113 ret[
'Y'] = ret[
'C']; ret[
'y'] = ret[
'C'];
114 ret[
'S'] = ret[
'C']; ret[
's'] = ret[
'C'];
115 ret[
'W'] = ret[
'A']; ret[
'w'] = ret[
'A'];
116 ret[
'K'] = ret[
'G']; ret[
'k'] = ret[
'G'];
117 ret[
'M'] = ret[
'A']; ret[
'm'] = ret[
'A'];
118 ret[
'B'] = ret[
'C']; ret[
'b'] = ret[
'C'];
119 ret[
'D'] = ret[
'A']; ret[
'd'] = ret[
'A'];
120 ret[
'H'] = ret[
'A']; ret[
'h'] = ret[
'A'];
121 ret[
'V'] = ret[
'A']; ret[
'v'] = ret[
'A'];
151 constexpr
dna4 operator""_dna4(
char const c) noexcept
170 for (
size_t i = 0; i < n; ++i)
171 r[i].assign_char(s[i]);
constexpr dna4() noexcept=default
Defaulted.
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 four letter RNA alphabet of A,C,G,U.
Definition: rna4.hpp:46
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
~dna4() noexcept=default
Defaulted.
The four letter DNA alphabet of A,C,G,T.
Definition: dna4.hpp:47
constexpr dna4(t const &r) noexcept
Allow implicit construction from dna/rna of the same size.
Definition: dna4.hpp:76
The main SeqAn3 namespace.
Definition: aligned_sequence_concept.hpp:36
constexpr dna4 & operator=(dna4 const &) noexcept=default
Defaulted.
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 dna4 & 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