49class dna4 :
public nucleotide_base<dna4, 4>
53 using base_t = nucleotide_base<dna4, 4>;
59 friend base_t::base_t;
68 constexpr dna4() noexcept = default;
69 constexpr
dna4(
dna4 const &) noexcept = default;
71 constexpr
dna4 & operator=(
dna4 const &) noexcept = default;
72 constexpr
dna4 & operator=(
dna4 &&) noexcept = default;
73 ~
dna4() noexcept = default;
84 template <
std::same_as<rna4> t>
85 constexpr
dna4(t const & r) noexcept
137 return rank_complement_table[rank];
146 return rank_to_char_table[rank];
155 using index_t = std::make_unsigned_t<char_type>;
156 return char_to_rank_table[
static_cast<index_t
>(chr)];
162 static constexpr std::array<rank_type, 256> char_to_rank_table{[]()
constexpr
164 std::array<rank_type, 256> ret{};
169 ret[rank_to_char_table[rnk]] = rnk;
170 ret[
to_lower(rank_to_char_table[rnk])] = rnk;
212using dna4_vector = std::vector<dna4>;
236constexpr dna4
operator""_dna4(
char const c)
noexcept
238 return dna4{}.assign_char(c);
256 for (
size_t i = 0; i < n; ++i)
257 r[i].assign_char(s[i]);
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
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:196
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
constexpr dna4 complement() const noexcept
Returns the complement of the current nucleotide.
Definition dna4.hpp:92
constexpr dna4() noexcept=default
Defaulted.
static constexpr detail::min_viable_uint_t< size > alphabet_size
constexpr rank_type to_rank() const noexcept
The four letter RNA alphabet of A,C,G,U.
Definition rna4.hpp:46
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
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:74
SeqAn specific customisations in the standard namespace.
Provides seqan3::nucleotide_base.