SeqAn3 3.3.0-rc.1
The Modern C++ library for sequence analysis.
 
Loading...
Searching...
No Matches
dna15.hpp
Go to the documentation of this file.
1// -----------------------------------------------------------------------------------------------------
2// Copyright (c) 2006-2022, Knut Reinert & Freie Universität Berlin
3// Copyright (c) 2016-2022, Knut Reinert & MPI für molekulare Genetik
4// This file may be used, modified and/or redistributed under the terms of the 3-clause BSD-License
5// shipped with this file and also available at: https://github.com/seqan/seqan3/blob/master/LICENSE.md
6// -----------------------------------------------------------------------------------------------------
7
13#pragma once
14
15#include <vector>
16
19
20// ------------------------------------------------------------------
21// dna15
22// ------------------------------------------------------------------
23
24namespace seqan3
25{
26
27class rna15;
28
50class dna15 : public nucleotide_base<dna15, 15>
51{
52private:
55
57 friend base_t;
60 friend base_t::base_t;
63 friend rna15;
64
65public:
69 constexpr dna15() noexcept = default;
70 constexpr dna15(dna15 const &) noexcept = default;
71 constexpr dna15(dna15 &&) noexcept = default;
72 constexpr dna15 & operator=(dna15 const &) noexcept = default;
73 constexpr dna15 & operator=(dna15 &&) noexcept = default;
74 ~dna15() noexcept = default;
75
76 using base_t::base_t;
77
85 template <std::same_as<rna15> t> // Accept incomplete type
86 constexpr dna15(t const & r) noexcept
87 {
88 assign_rank(r.to_rank());
89 }
91
92private:
94 static constexpr char_type
95 rank_to_char_table[alphabet_size]{'A', 'B', 'C', 'D', 'G', 'H', 'K', 'M', 'N', 'R', 'S', 'T', 'V', 'W', 'Y'};
96
99 11, // T is complement of 'A'_dna15
100 12, // V is complement of 'B'_dna15
101 4, // G is complement of 'C'_dna15
102 5, // H is complement of 'D'_dna15
103 2, // C is complement of 'G'_dna15
104 3, // D is complement of 'H'_dna15
105 7, // M is complement of 'K'_dna15
106 6, // K is complement of 'M'_dna15
107 8, // N is complement of 'N'_dna15
108 14, // Y is complement of 'R'_dna15
109 10, // S is complement of 'S'_dna15
110 0, // A is complement of 'T'_dna15
111 1, // B is complement of 'V'_dna15
112 13, // W is complement of 'W'_dna15
113 9 // R is complement of 'Y'_dna15
114 };
115
117 static constexpr rank_type rank_complement(rank_type const rank)
118 {
120 }
121
123 static constexpr char_type rank_to_char(rank_type const rank)
124 {
125 return rank_to_char_table[rank];
126 }
127
129 static constexpr rank_type char_to_rank(char_type const chr)
130 {
131 using index_t = std::make_unsigned_t<char_type>;
132 return char_to_rank_table[static_cast<index_t>(chr)];
133 }
134
135 // clang-format off
138 {
139 []() constexpr {
141
142 ret.fill(8u); // initialize with UNKNOWN ('N')
143
144 // reverse mapping for characters and their lowercase
145 for (size_t rnk = 0u; rnk < alphabet_size; ++rnk)
146 {
147 ret[rank_to_char_table[rnk]] = rnk;
148 ret[to_lower(rank_to_char_table[rnk])] = rnk;
149 }
150
151 // set U equal to T
152 ret['U'] = ret['T'];
153 ret['u'] = ret['t'];
154
155 return ret;
156 }()
157 };
158};
159// clang-format on
160
161// ------------------------------------------------------------------
162// containers
163// ------------------------------------------------------------------
164
171
172// ------------------------------------------------------------------
173// literals
174// ------------------------------------------------------------------
175inline namespace literals
176{
177
192constexpr dna15 operator""_dna15(char const c) noexcept
193{
194 return dna15{}.assign_char(c);
195}
196
206SEQAN3_WORKAROUND_LITERAL dna15_vector operator""_dna15(char const * s, std::size_t n)
207{
208 dna15_vector r;
209 r.resize(n);
210
211 for (size_t i = 0; i < n; ++i)
212 r[i].assign_char(s[i]);
213
214 return r;
215}
217
218} // namespace literals
219
220} // namespace seqan3
constexpr derived_type & assign_char(char_type const chr) noexcept
Assign from a character, implicitly converts invalid characters.
Definition: alphabet_base.hpp:163
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:199
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:72
constexpr derived_type & assign_rank(rank_type const c) noexcept
Assign from a numeric value.
Definition: alphabet_base.hpp:187
rank_type rank
The value of the alphabet letter is stored as the rank.
Definition: alphabet_base.hpp:261
The 15 letter DNA alphabet, containing all IUPAC smybols minus the gap..
Definition: dna15.hpp:51
friend base_t
Befriend seqan3::nucleotide_base.
Definition: dna15.hpp:57
static constexpr rank_type rank_complement(rank_type const rank)
Returns the complement by rank.
Definition: dna15.hpp:117
friend rna15
Befriend seqan3::rna15 so it can copy char_to_rank.
Definition: dna15.hpp:63
constexpr dna15() noexcept=default
Defaulted.
static constexpr rank_type rank_complement_table[alphabet_size]
The rank complement table.
Definition: dna15.hpp:98
static constexpr rank_type char_to_rank(char_type const chr)
Returns the rank representation of character.
Definition: dna15.hpp:129
static constexpr char_type rank_to_char_table[alphabet_size]
The lookup table used in rank_to_char.
Definition: dna15.hpp:95
static constexpr char_type rank_to_char(rank_type const rank)
Returns the character representation of rank.
Definition: dna15.hpp:123
static constexpr std::array< rank_type, 256 > char_to_rank_table
Returns the rank representation of character.
Definition: dna15.hpp:138
A CRTP-base that refines seqan3::alphabet_base and is used by the nucleotides.
Definition: nucleotide_base.hpp:43
alphabet_base< dna15, size, char > base_t
Type of the base class.
Definition: nucleotide_base.hpp:46
The 15 letter RNA alphabet, containing all IUPAC smybols minus the gap..
Definition: rna15.hpp:51
T fill(T... args)
The main SeqAn3 namespace.
Definition: aligned_sequence_concept.hpp:29
constexpr char_type to_lower(char_type const c) noexcept
Converts 'A'-'Z' to 'a'-'z' respectively; other characters are returned as is.
Definition: transform.hpp:83
SeqAn specific customisations in the standard namespace.
Provides seqan3::nucleotide_base.
#define SEQAN3_WORKAROUND_LITERAL
Our char literals returning std::vector should be constexpr if constexpr std::vector is supported.
Definition: platform.hpp:282
T resize(T... args)
Provides utilities for modifying characters.