SeqAn3 3.4.0-rc.1
The Modern C++ library for sequence analysis.
Loading...
Searching...
No Matches
concept.hpp File Reference

Provides seqan3::rna_structure_alphabet. More...

+ Include dependency graph for alphabet/structure/concept.hpp:
+ This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

struct  seqan3::detail::adl_only::is_pair_close_cpo
 seqan3::detail::customisation_point_object (CPO) definition for seqan3::is_pair_close. More...
 
struct  seqan3::detail::adl_only::is_pair_open_cpo
 seqan3::detail::customisation_point_object (CPO) definition for seqan3::is_pair_open. More...
 
struct  seqan3::detail::adl_only::is_unpaired_cpo
 seqan3::detail::customisation_point_object (CPO) definition for seqan3::is_unpaired. More...
 
struct  seqan3::detail::adl_only::max_pseudoknot_depth_cpo< alphabet_t >
 seqan3::detail::customisation_point_object (CPO) definition for seqan3::max_pseudoknot_depth. More...
 
struct  seqan3::detail::adl_only::pseudoknot_id_cpo
 seqan3::detail::customisation_point_object (CPO) definition for seqan3::pseudoknot_id_cpo. More...
 

Namespaces

namespace  seqan3
 The main SeqAn3 namespace.
 
namespace  seqan3::detail
 The internal SeqAn3 namespace.
 

Functions

template<typename... args_t>
void seqan3::detail::adl_only::is_pair_close (args_t...)=delete
 Poison-pill overload to prevent non-ADL forms of unqualified lookup.
 
template<typename... args_t>
void seqan3::detail::adl_only::is_pair_open (args_t...)=delete
 Poison-pill overload to prevent non-ADL forms of unqualified lookup.
 
template<typename... args_t>
void seqan3::detail::adl_only::is_unpaired (args_t...)=delete
 Poison-pill overload to prevent non-ADL forms of unqualified lookup.
 
template<typename... args_t>
void seqan3::detail::adl_only::max_pseudoknot_depth (args_t...)=delete
 Poison-pill overload to prevent non-ADL forms of unqualified lookup.
 
template<typename... args_t>
void seqan3::detail::adl_only::pseudoknot_id (args_t...)=delete
 Poison-pill overload to prevent non-ADL forms of unqualified lookup.
 

Variables

constexpr auto seqan3::is_pair_close = detail::adl_only::is_pair_close_cpo{}
 Check whether the given character represents a leftward interaction in an RNA structure.
 
constexpr auto seqan3::is_pair_open = detail::adl_only::is_pair_open_cpo{}
 Check whether the given character represents a rightward interaction in an RNA structure.
 
constexpr auto seqan3::is_unpaired = detail::adl_only::is_unpaired_cpo{}
 Check whether the given character represents an unpaired nucleotide in an RNA structure.
 
template<typename alph_t >
constexpr auto seqan3::max_pseudoknot_depth = detail::adl_only::max_pseudoknot_depth_cpo<alph_t>{}()
 A type trait that holds the ability of the structure alphabet to represent pseudoknots, i.e. crossing interactions, up to a certain depth.
 
constexpr auto seqan3::pseudoknot_id = detail::adl_only::pseudoknot_id_cpo{}
 Retrieve an id for the level of a pseudoknotted interaction (also known as 'page number').
 

Detailed Description

Provides seqan3::rna_structure_alphabet.

Author
Joerg Winkler <j.winkler AT fu-berlin.de>
Hide me