60class aa20 :
public aminoacid_base<aa20, 20>
64 using base_t = aminoacid_base<aa20, 20>;
70 friend base_t::base_t;
77 constexpr aa20() noexcept = default;
78 constexpr
aa20(
aa20 const &) noexcept = default;
80 constexpr
aa20 & operator=(
aa20 const &) noexcept = default;
81 constexpr
aa20 & operator=(
aa20 &&) noexcept = default;
82 ~
aa20() noexcept = default;
89 static constexpr
char_type rank_to_char_table[
alphabet_size]{
'A',
'C',
'D',
'E',
'F',
'G',
'H',
'I',
'K',
'L',
90 'M',
'N',
'P',
'Q',
'R',
'S',
'T',
'V',
'W',
'Y'};
95 return rank_to_char_table[rank];
102 return char_to_rank_table[
static_cast<index_t
>(chr)];
106 static constexpr std::array<rank_type, 256> char_to_rank_table{
109 std::array<rank_type, 256> ret{};
117 ret[
static_cast<rank_type>(rank_to_char_table[rnk])] = rnk;
168constexpr aa20 operator""_aa20(
char const c)
noexcept
170 return aa20{}.assign_char(c);
189 for (
size_t i = 0; i < n; ++i)
Provides seqan3::aminoacid_alphabet.
Provides seqan3::aminoacid_base.
constexpr aa20() noexcept=default
Defaulted.
std::vector< aa20 > aa20_vector
Alias for a std::vector of seqan3::aa20.
Definition aa20.hpp:147
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
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
static constexpr detail::min_viable_uint_t< size > alphabet_size
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