135 return rank_to_char_table[rank];
142 return char_to_rank_table[
static_cast<index_t
>(chr)];
154 rank_table[
'.'] = 0u;
155 rank_table[
'('] = 1u;
156 rank_table[
')'] = 2u;
162inline namespace literals
178constexpr dot_bracket3
operator""_db3(
char const ch)
noexcept
180 return dot_bracket3{}.assign_char(ch);
199 for (
size_t idx = 0ul; idx < len; ++idx)
200 vec[idx].assign_char(str[idx]);
Provides seqan3::rna_structure_alphabet.
Provides seqan3::alphabet_base.
A CRTP-base that makes defining a custom alphabet easier.
Definition alphabet_base.hpp:54
constexpr rank_type to_rank() const noexcept
Return the letter's numeric value (rank in the alphabet).
Definition alphabet_base.hpp:134
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, void >, char, char > char_type
The char representation; conditional needed to make semi alphabet definitions legal.
Definition alphabet_base.hpp:69
The three letter RNA structure alphabet of the characters ".()".
Definition dot_bracket3.hpp:51
constexpr bool is_pair_close() const noexcept
Check whether the character represents a leftward interaction in an RNA structure.
Definition dot_bracket3.hpp:90
constexpr std::optional< uint8_t > pseudoknot_id() const noexcept
Get an identifier for a pseudoknotted interaction, where opening and closing brackets of the same typ...
Definition dot_bracket3.hpp:119
static constexpr uint8_t max_pseudoknot_depth
The ability of this alphabet to represent pseudoknots, i.e. crossing interactions,...
Definition dot_bracket3.hpp:111
constexpr bool is_unpaired() const noexcept
Check whether the character represents an unpaired position in an RNA structure.
Definition dot_bracket3.hpp:100
constexpr dot_bracket3() noexcept=default
Defaulted.
constexpr bool is_pair_open() const noexcept
Check whether the character represents a rightward interaction in an RNA structure.
Definition dot_bracket3.hpp:80
The main SeqAn3 namespace.
Definition aligned_sequence_concept.hpp:26