56template <u
int8_t SIZE = 51>
59 static_assert(SIZE >= 15 && SIZE <= 67 && SIZE % 2 == 1,
60 "The wuss<> alphabet size must be an odd number in range 15..67.");
100 return interaction_tab[
to_rank()] < 0;
110 return interaction_tab[
to_rank()] > 0;
120 return interaction_tab[
to_rank()] == 0;
141 if (interaction_tab[
to_rank()] != 0)
142 return std::abs(interaction_tab[
to_rank()]) - 1;
152 return rank_to_char_table[rank];
159 return char_to_rank_table[
static_cast<index_t
>(chr)];
167 chars{
'.',
':',
',',
'-',
'_',
'~',
';',
'<',
'(',
'[',
'{',
'>',
')',
']',
'}'};
173 chars[rnk] =
'A' +
off;
174 chars[rnk + 1u] =
'a' +
off;
190 rank_table[rank_to_char_table[rnk]] = rnk;
206 int8_t cnt_close = 0;
208 for (
rank_type rnk = 0u; rnk <= 6u; ++rnk)
209 interaction_table[rnk] = 0;
211 for (
rank_type rnk = 7u; rnk <= 10u; ++rnk)
212 interaction_table[rnk] = --cnt_open;
214 for (
rank_type rnk = 11u; rnk <= 14u; ++rnk)
215 interaction_table[rnk] = ++cnt_close;
219 interaction_table[rnk] = --cnt_open;
220 interaction_table[rnk + 1u] = ++cnt_close;
223 return interaction_table;
232inline namespace literals
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
constexpr char_type to_char() const noexcept
Return the letter as a character of char_type.
Definition alphabet_base.hpp:112
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
A "pretty printer" for most SeqAn data structures and related types.
Definition debug_stream_type.hpp:79
The WUSS structure alphabet of the characters .<>:,-_~;()[]{}AaBbCcDd...
Definition wuss.hpp:58
static constexpr uint8_t max_pseudoknot_depth
The ability of this alphabet to represent pseudoknots, i.e. crossing interactions,...
Definition wuss.hpp:129
constexpr bool is_pair_close() const noexcept
Check whether the character represents a leftward interaction in an RNA structure.
Definition wuss.hpp:108
constexpr bool is_pair_open() const noexcept
Check whether the character represents a rightward interaction in an RNA structure.
Definition wuss.hpp:98
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 wuss.hpp:139
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
constexpr wuss() noexcept=default
Defaulted.
constexpr bool is_unpaired() const noexcept
Check whether the character represents an unpaired position in an RNA structure.
Definition wuss.hpp:118
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 auto to_rank
Return the rank representation of a (semi-)alphabet object.
Definition alphabet/concept.hpp:152
The main SeqAn3 namespace.
Definition aligned_sequence_concept.hpp:26
@ off
Automatic update notifications should be disabled.