SeqAn3  3.0.3
The Modern C++ library for sequence analysis.
dna4.hpp
Go to the documentation of this file.
1 // -----------------------------------------------------------------------------------------------------
2 // Copyright (c) 2006-2020, Knut Reinert & Freie Universität Berlin
3 // Copyright (c) 2016-2020, 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 
23 namespace seqan3
24 {
25 
26 class rna4;
27 
52 class dna4 : public nucleotide_base<dna4, 4>
53 {
54 private:
57 
59  friend base_t;
61  friend base_t::base_t;
64  friend rna4;
65 
66 public:
70  constexpr dna4() noexcept = default;
71  constexpr dna4(dna4 const &) noexcept = default;
72  constexpr dna4(dna4 &&) noexcept = default;
73  constexpr dna4 & operator=(dna4 const &) noexcept = default;
74  constexpr dna4 & operator=(dna4 &&) noexcept = default;
75  ~dna4() noexcept = default;
76 
77  using base_t::base_t;
78 
80  template <std::same_as<rna4> t> // Accept incomplete type
81  constexpr dna4(t const & r) noexcept
82  {
83  assign_rank(r.to_rank());
84  }
86 
87 private:
112  {
113  'A',
114  'C',
115  'G',
116  'T'
117  };
118 
123  {
124  [] () constexpr
125  {
127 
128  // reverse mapping for characters and their lowercase
129  for (size_t rnk = 0u; rnk < alphabet_size; ++rnk)
130  {
131  ret[rank_to_char_table[rnk]] = rnk;
132  ret[to_lower(rank_to_char_table[rnk])] = rnk;
133  }
134 
135  // set U equal to T
136  ret['U'] = ret['T']; ret['u'] = ret['t'];
137 
138  // iupac characters get special treatment, because there is no N
139  ret['R'] = ret['A']; ret['r'] = ret['A']; // A or G
140  ret['Y'] = ret['C']; ret['y'] = ret['C']; // C or T
141  ret['S'] = ret['C']; ret['s'] = ret['C']; // C or G
142  ret['W'] = ret['A']; ret['w'] = ret['A']; // A or T
143  ret['K'] = ret['G']; ret['k'] = ret['G']; // G or T
144  ret['M'] = ret['A']; ret['m'] = ret['A']; // A or T
145  ret['B'] = ret['C']; ret['b'] = ret['C']; // C or G or T
146  ret['D'] = ret['A']; ret['d'] = ret['A']; // A or G or T
147  ret['H'] = ret['A']; ret['h'] = ret['A']; // A or C or T
148  ret['V'] = ret['A']; ret['v'] = ret['A']; // A or C or G
149 
150  return ret;
151  }()
152  };
153 
156 
161  static constexpr char_type rank_to_char(rank_type const rank)
162  {
163  return rank_to_char_table[rank];
164  }
165 
170  static constexpr rank_type char_to_rank(char_type const chr)
171  {
172  using index_t = std::make_unsigned_t<char_type>;
173  return char_to_rank_table[static_cast<index_t>(chr)];
174  }
175 };
176 
177 // ------------------------------------------------------------------
178 // containers
179 // ------------------------------------------------------------------
180 
187 
188 // ------------------------------------------------------------------
189 // literals
190 // ------------------------------------------------------------------
191 
202 constexpr dna4 operator""_dna4(char const c) noexcept
203 {
204  return dna4{}.assign_char(c);
205 }
206 
217 inline dna4_vector operator""_dna4(char const * s, std::size_t n)
218 {
219  dna4_vector r;
220  r.resize(n);
221 
222  for (size_t i = 0; i < n; ++i)
223  r[i].assign_char(s[i]);
224 
225  return r;
226 }
228 
229 // ------------------------------------------------------------------
230 // dna4 (deferred definition)
231 // ------------------------------------------------------------------
232 
234 {
235  'T'_dna4, // complement of 'A'_dna4
236  'G'_dna4, // complement of 'C'_dna4
237  'C'_dna4, // complement of 'G'_dna4
238  'A'_dna4 // complement of 'T'_dna4
239 };
240 
241 } // namespace seqan3
constexpr derived_type & assign_char(char_type const chr) noexcept
Assign from a character, implicitly converts invalid characters.
Definition: alphabet_base.hpp:211
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:276
constexpr derived_type & assign_rank(rank_type const c) noexcept
Assign from a numeric value.
Definition: alphabet_base.hpp:264
rank_type rank
The value of the alphabet letter is stored as the rank.
Definition: alphabet_base.hpp:338
The four letter DNA alphabet of A,C,G,T.
Definition: dna4.hpp:53
constexpr dna4() noexcept=default
Defaulted.
static constexpr std::array< rank_type, 256 > char_to_rank_table
The lookup table used in char_to_rank.
Definition: dna4.hpp:123
friend rna4
Befriend seqan3::rna4 so it can copy char_to_rank.
Definition: dna4.hpp:64
static constexpr char_type rank_to_char(rank_type const rank)
Returns the character representation of rank.
Definition: dna4.hpp:161
friend base_t
Befriend seqan3::nucleotide_base.
Definition: dna4.hpp:59
static constexpr rank_type char_to_rank(char_type const chr)
Returns the rank representation of character.
Definition: dna4.hpp:170
static const std::array< dna4, alphabet_size > complement_table
The complement table.
Definition: dna4.hpp:155
static constexpr char_type rank_to_char_table[alphabet_size]
The lookup table used in rank_to_char.
Definition: dna4.hpp:112
A CRTP-base that refines seqan3::alphabet_base and is used by the nucleotides.
Definition: nucleotide_base.hpp:43
alphabet_base< dna4, size, char > base_t
Type of the base class.
Definition: nucleotide_base.hpp:46
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:81
SeqAn specific customisations in the standard namespace.
Provides seqan3::nucleotide_base.
T resize(T... args)