SeqAn3 3.3.0-rc.1
The Modern C++ library for sequence analysis.
dna4.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
18
19// ------------------------------------------------------------------
20// dna4
21// ------------------------------------------------------------------
22
23namespace seqan3
24{
25
26class rna4;
27
52class dna4 : public nucleotide_base<dna4, 4>
53{
54private:
57
59 friend base_t;
62 friend base_t::base_t;
65 friend rna4;
66
67public:
71 constexpr dna4() noexcept = default;
72 constexpr dna4(dna4 const &) noexcept = default;
73 constexpr dna4(dna4 &&) noexcept = default;
74 constexpr dna4 & operator=(dna4 const &) noexcept = default;
75 constexpr dna4 & operator=(dna4 &&) noexcept = default;
76 ~dna4() noexcept = default;
77
78 using base_t::base_t;
79
87 template <std::same_as<rna4> t> // template parameter t to accept incomplete type
88 constexpr dna4(t const & r) noexcept
89 {
90 assign_rank(r.to_rank());
91 }
93
94private:
118 static constexpr char_type rank_to_char_table[alphabet_size]{'A', 'C', 'G', 'T'};
119
121 static constexpr rank_type rank_complement_table[alphabet_size]{
122 3, // T is complement of 'A'_dna4
123 2, // G is complement of 'C'_dna4
124 1, // C is complement of 'G'_dna4
125 0 // A is complement of 'T'_dna4
126 };
127
132 static constexpr rank_type rank_complement(rank_type const rank)
133 {
134 return rank_complement_table[rank];
135 }
136
141 static constexpr char_type rank_to_char(rank_type const rank)
142 {
143 return rank_to_char_table[rank];
144 }
145
150 static constexpr rank_type char_to_rank(char_type const chr)
151 {
152 using index_t = std::make_unsigned_t<char_type>;
153 return char_to_rank_table[static_cast<index_t>(chr)];
154 }
155
156 // clang-format off
160 static constexpr std::array<rank_type, 256> char_to_rank_table
161 {
162 []() constexpr {
164
165 // reverse mapping for characters and their lowercase
166 for (size_t rnk = 0u; rnk < alphabet_size; ++rnk)
167 {
168 ret[rank_to_char_table[rnk]] = rnk;
169 ret[to_lower(rank_to_char_table[rnk])] = rnk;
170 }
171
172 // set U equal to T
173 ret['U'] = ret['T'];
174 ret['u'] = ret['t'];
175
176 // iupac characters get special treatment, because there is no N
177 ret['R'] = ret['A'];
178 ret['r'] = ret['A']; // A or G
179 ret['Y'] = ret['C'];
180 ret['y'] = ret['C']; // C or T
181 ret['S'] = ret['C'];
182 ret['s'] = ret['C']; // C or G
183 ret['W'] = ret['A'];
184 ret['w'] = ret['A']; // A or T
185 ret['K'] = ret['G'];
186 ret['k'] = ret['G']; // G or T
187 ret['M'] = ret['A'];
188 ret['m'] = ret['A']; // A or T
189 ret['B'] = ret['C'];
190 ret['b'] = ret['C']; // C or G or T
191 ret['D'] = ret['A'];
192 ret['d'] = ret['A']; // A or G or T
193 ret['H'] = ret['A'];
194 ret['h'] = ret['A']; // A or C or T
195 ret['V'] = ret['A'];
196 ret['v'] = ret['A']; // A or C or G
197
198 return ret;
199 }()
200 };
201};
202// clang-format on
203
204// ------------------------------------------------------------------
205// containers
206// ------------------------------------------------------------------
207
214
215inline namespace literals
216{
217
218// ------------------------------------------------------------------
219// literals
220// ------------------------------------------------------------------
221
237constexpr dna4 operator""_dna4(char const c) noexcept
238{
239 return dna4{}.assign_char(c);
240}
241
252inline dna4_vector operator""_dna4(char const * s, std::size_t n)
253{
254 dna4_vector r;
255 r.resize(n);
256
257 for (size_t i = 0; i < n; ++i)
258 r[i].assign_char(s[i]);
259
260 return r;
261}
263
264} // namespace literals
265
266} // 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
detail::min_viable_uint_t< size - 1 > rank_type
The type of the alphabet when represented as a number (e.g. via to_rank()).
Definition: alphabet_base.hpp:80
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, void >, char, char > char_type
The char representation; conditional needed to make semi alphabet definitions legal.
Definition: alphabet_base.hpp:72
constexpr dna4 & assign_rank(rank_type const c) noexcept
Assign from a numeric value.
Definition: alphabet_base.hpp:187
The four letter DNA alphabet of A,C,G,T..
Definition: dna4.hpp:53
constexpr dna4() noexcept=default
Defaulted.
A CRTP-base that refines seqan3::alphabet_base and is used by the nucleotides.
Definition: nucleotide_base.hpp:43
The four letter RNA alphabet of A,C,G,U..
Definition: rna4.hpp:49
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.
T resize(T... args)