22namespace seqan3::detail
36template <
typename structure_alph_type,
typename bpp_type, std::ranges::range structure_type>
37inline void bpp_from_rna_structure(bpp_type &
bpp, structure_type
const &
structure,
double weight = 1.)
40 throw parse_error{
"Cannot create base pair probabilities from a structure that is not RNA structure."};
43 if constexpr (std::ranges::sized_range<structure_type>)
48 for (structure_alph_type symbol :
structure)
53 if (symbol.is_pair_open())
57 else if (symbol.is_pair_close())
59 if (!brackets[
id].
empty())
61 bpp[pos].emplace(weight, brackets[
id].top());
62 bpp[brackets[
id].
top()].emplace(weight, pos);
67 throw parse_error{
std::string{
"Invalid bracket notation: Unpaired closing bracket at position "}
74 for (uint8_t
id = 0u; id < max_pseudoknot_depth<structure_alph_type>; ++
id)
76 if (!brackets[
id].
empty())
78 throw parse_error{
std::string{
"Invalid bracket notation: Unpaired opening bracket at position "}
Provides seqan3::rna_structure_alphabet.
constexpr auto pseudoknot_id
Retrieve an id for the level of a pseudoknotted interaction (also known as 'page number').
Definition: alphabet/structure/concept.hpp:459
@ structure
Fixed interactions, usually a string of structure alphabet characters.
@ bpp
Base pair probability matrix of interactions, usually a matrix of float numbers.
@ id
The identifier, usually a string.
constexpr size_t size
The size of a type pack.
Definition: type_pack/traits.hpp:146
A concept that indicates whether an alphabet represents RNA structure.
Provides exceptions used in the I/O module.