SeqAn3  3.0.0
The Modern C++ library for sequence analysis.
Nucleotide

Provides the different DNA and RNA alphabet types. More...

+ Collaboration diagram for Nucleotide:

Classes

class  seqan3::dna15
 The 15 letter DNA alphabet, containing all IUPAC smybols minus the gap. More...
 
class  seqan3::dna4
 The four letter DNA alphabet of A,C,G,T. More...
 
class  seqan3::dna5
 The five letter DNA alphabet of A,C,G,T and the unknown character N. More...
 
class  seqan3::nucleotide_base< derived_type, size >
 A CRTP-base that refines seqan3::alphabet_base and is used by the nucleotides. More...
 
interface  seqan3::NucleotideAlphabet
 A concept that indicates whether an alphabet represents nucleotides. More...
 
class  seqan3::rna15
 The 15 letter RNA alphabet, containing all IUPAC smybols minus the gap. More...
 
class  seqan3::rna4
 The four letter RNA alphabet of A,C,G,U. More...
 
class  seqan3::rna5
 The five letter RNA alphabet of A,C,G,U and the unknown character N. More...
 
class  seqan3::sam_dna16
 A 16 letter DNA alphabet, containing all IUPAC symbols minus the gap and plus an equality sign ('='). More...
 

Function objects (Nucleotide)

constexpr auto seqan3::complement = detail::adl::only::complement_fn{}
 Return the complement of a nucleotide object. More...
 

Detailed Description

Provides the different DNA and RNA alphabet types.

Introduction

Nucleotide sequences are at the core of most bioinformatic data processing and while it is possible to represent them in a regular std::string, it makes sense to have specialised data structures in most cases. This sub-module offers multiple nucleotide alphabets that can be used with regular containers and ranges.

Letter Description seqan3::dna15 seqan3::dna5 seqan3::dna4 seqan3::rna15 seqan3::rna5 seqan3::rna4
A Adenine A A A A A A
C Cytosine C C C C C C
G Guanine G G G G G G
T Thymine (DNA) T T T U U U
U Uracil (RNA) T T T U U U
M A or C M N A M N A
R A or G R N A R N A
W A or T W N A W N A
Y C or T Y N C Y N C
S C or G S N C S N C
K G or T K N G K N G
V A or C or G V N A V N A
H A or C or T H N A H N A
D A or G or T D N A D N A
B C or G or T B N C B N C
N A or C or G or T N N A N N A
Size 15 5 4 15 5 4

Keep in mind, that while we think of "the nucleotide alphabet" as consisting of four bases, there are indeed more characters defined with different levels of ambiguity. Depending on your application it will make sense to preserve this ambiguity or to discard it to save space and/or optimise computations. SeqAn offers six distinct nucleotide alphabet types to accommodate for this.

The specialised RNA alphabets are provided for convenience, however the DNA alphabets can handle being assigned a ‘'U’` character, as well. See below for the details.

Which alphabet to chose?

  1. in most cases, take seqan3::dna15
  2. if you are memory constrained and sequence data is actually the main memory consumer, use seqan3::dna5
  3. if you use specialised algorithms that profit from a 2-bit representation, use seqan3::dna4
  4. if you are doing only RNA input/output, use the respective seqan3::rna* type
  5. to actually save space from using smaller alphabets, you need a compressed container (e.g. seqan3::bitcompressed_vector)

Printing and conversion to char

As with all alphabets in SeqAn3, none of the nucleotide alphabets can be directly converted to char or printed. You need to explicitly call seqan3::to_char to convert to char. The only exception is seqan3::debug_stream which does this conversion to char automatically.

T and U are represented by the same rank and you cannot differentiate between them. The only difference between e.g. seqan3::dna4 and seqan3::rna4 is the output when calling to_char().

Assignment and conversions between nucleotide types

When assigning from char or converting from a larger nucleotide alphabet to a smaller one, loss of information can occur since obviously some bases are not available. When converting to seqan3::dna5 or seqan3::rna5, non-canonical bases (letters other than A, C, G, T, U) are converted to ‘'N’` to preserve ambiguity at that position, while for seqan3::dna4 and seqan3::rna4 they are converted to the first of the possibilities they represent (because there is no letter ‘'N’` to represent ambiguity). See the greyed out values in the table at the top for an overview of which conversions take place.

char values that are none of the IUPAC symbols, e.g. 'P', are always converted to the equivalent of assigning 'N', i.e. they result in 'A' for seqan3::dna4 and seqan3::rna4, and in 'N' for the other alphabets.

Literals

To avoid writing dna4{}.assign_char('C') every time, you may instead use the literal 'C'_dna4. All nucleotide types defined here have character literals and also string literals which return a vector of the respective type.

Concept

The nucleotide submodule defines seqan3::NucleotideAlphabet which encompasses all the alphabets defined in the submodule and refines seqan3::Alphabet. The only additional requirement is that their values can be complemented, see below.

Complement

Letter Description Complement
A Adenine T
C Cytosine G
G Guanine C
T Thymine (DNA) A
U Uracil (RNA) A
M A or C K
R A or G Y
W A or T W
Y C or T R
S C or G S
K G or T M
V A or C or G B
H A or C or T D
D A or G or T H
B C or G or T V
N A or C or G or T N

In the typical structure of DNA molecules (or double-stranded RNA), each nucleotide has a complement that it pairs with. To generate the complement value of a nucleotide letter, you can call an implementation of seqan3::NucleotideAlphabet::complement() on it.

For the ambiguous letters, the complement is the (possibly also ambiguous) letter representing the variant of the individual complements.

Variable Documentation

◆ complement

constexpr auto seqan3::complement = detail::adl::only::complement_fn{}
inline

Return the complement of a nucleotide object.

Template Parameters
your_typeType of the argument.
Parameters
nuclThe nucleotide object for which you want to receive the complement.
Returns
The complement character of nucl, e.g. 'C' for 'G'.

This is a function object. Invoke it with the parameter(s) specified above.

It acts as a wrapper and looks for three possible implementations (in this order):

  1. A free function complement(your_type const a) in the namespace of your type (or as friend). The function must be marked noexcept (constexpr is not required, but recommended) and the return type be your_type.
  2. A free function complement(your_type const a) in namespace seqan3::custom. The same restrictions apply as above.
  3. A member function called complement(). It must be marked noexcept (constexpr is not required, but recommended) and the return type be your_type.

Every nucleotide alphabet type must provide one of the above.

Example

using seqan3::operator""_rna5;
int main()
{
auto r1 = 'A'_rna5.complement(); // calls member function rna5::complement(); r1 == 'U'_rna5
auto r2 = seqan3::complement('A'_rna5); // calls global complement() function on the rna5 object; r2 == 'U'_rna5
}

Customisation point

This is a customisation point (see Customisation). To specify the behaviour for your own alphabet type, simply provide one of the three functions specified above.