 |
SeqAn3
3.0.1
The Modern C++ library for sequence analysis.
|
|
Go to the documentation of this file.
59 constexpr
aa27() noexcept =
default;
60 constexpr
aa27(
aa27 const &) noexcept =
default;
61 constexpr
aa27(
aa27 &&) noexcept =
default;
64 ~aa27() noexcept =
default;
158 constexpr
aa27 operator""_aa27(
char const c) noexcept
182 for (
size_t i = 0; i < n; ++i)
183 r[i].assign_char(s[i]);
constexpr aa27 & operator=(aa27 const &) noexcept=default
Defaulted.
Provides seqan3::aminoacid_alphabet.
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
Provides seqan3::aminoacid_base.
constexpr derived_type & assign_char(char_type const c) noexcept
Assign from a character, implicitly converts invalid characters.
Definition: alphabet_base.hpp:140
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:62
The main SeqAn3 namespace.
Definition: aligned_sequence_concept.hpp:36
static constexpr char_type rank_to_char[alphabet_size]
Value to char conversion table.
Definition: aa27.hpp:72
constexpr aa27() noexcept=default
Defaulted.
~aa27() noexcept=default
Defaulted.
static constexpr std::array< rank_type, 256 > char_to_rank
Char to value conversion table.
Definition: aa27.hpp:104
A CRTP-base that refines seqan3::alphabet_base and is used by the amino acids.
Definition: aminoacid_base.hpp:29
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
The twenty-seven letter amino acid alphabet.
Definition: aa27.hpp:43