SeqAn3 3.4.0-rc.1
The Modern C++ library for sequence analysis.
Loading...
Searching...
No Matches
rna_structure_alphabet Interface Reference

A concept that indicates whether an alphabet represents RNA structure. More...

#include <seqan3/alphabet/structure/concept.hpp>

+ Inheritance diagram for rna_structure_alphabet:

Detailed Description

A concept that indicates whether an alphabet represents RNA structure.

RNA structure alphabets are required to represent interactions among RNA nucleotides. Therefore, each structure letter can be categorised as unpaired, opening an interaction, or closing an interaction. Additionally, the ability of representing pseudoknots is a property of RNA structure types.

Requirements

  1. t shall model seqan3::alphabet
  2. seqan3::is_pair_open needs to be defined for objects of type t
  3. seqan3::is_pair_close needs to be defined for objects of type t
  4. seqan3::is_unpaired needs to be defined for objects of type t
  5. seqan3::max_pseudoknot_depth needs to be defined for t and be greater than zero
  6. seqan3::pseudoknot_id needs to be defined for objects of type t

See the documentation pages for the respective requirements.

Related types

If a given type t models this concept, the following types typically do so, as well:

  • t &
  • t const
  • t const &

This entity is experimental and subject to change in the future. Experimental since version 3.1.


The documentation for this interface was generated from the following file:
Hide me