SeqAn3  3.0.3
The Modern C++ library for sequence analysis.
dna15.hpp
Go to the documentation of this file.
1 // -----------------------------------------------------------------------------------------------------
2 // Copyright (c) 2006-2021, Knut Reinert & Freie Universität Berlin
3 // Copyright (c) 2016-2021, 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 
24 namespace seqan3
25 {
26 
27 class rna15;
28 
50 class dna15 : public nucleotide_base<dna15, 15>
51 {
52 private:
55 
57  friend base_t;
59  friend base_t::base_t;
62  friend rna15;
63 
64 public:
68  constexpr dna15() noexcept = default;
69  constexpr dna15(dna15 const &) noexcept = default;
70  constexpr dna15(dna15 &&) noexcept = default;
71  constexpr dna15 & operator=(dna15 const &) noexcept = default;
72  constexpr dna15 & operator=(dna15 &&) noexcept = default;
73  ~dna15() noexcept = default;
74 
75  using base_t::base_t;
76 
84  template <std::same_as<rna15> t> // Accept incomplete type
85  constexpr dna15(t const & r) noexcept
86  {
87  assign_rank(r.to_rank());
88  }
90 
91 private:
93  static constexpr char_type rank_to_char_table[alphabet_size]
94  {
95  'A',
96  'B',
97  'C',
98  'D',
99  'G',
100  'H',
101  'K',
102  'M',
103  'N',
104  'R',
105  'S',
106  'T',
107  'V',
108  'W',
109  'Y'
110  };
111 
113  static constexpr std::array<rank_type, 256> char_to_rank_table
114  {
115  [] () constexpr
116  {
118 
119  // initialize with UNKNOWN (std::array::fill unfortunately not constexpr)
120  for (auto & c : ret)
121  c = 8; // rank of 'N'
122 
123  // reverse mapping for characters and their lowercase
124  for (size_t rnk = 0u; rnk < alphabet_size; ++rnk)
125  {
126  ret[rank_to_char_table[rnk]] = rnk;
127  ret[to_lower(rank_to_char_table[rnk])] = rnk;
128  }
129 
130  // set U equal to T
131  ret['U'] = ret['T']; ret['u'] = ret['t'];
132 
133  return ret;
134  }()
135  };
136 
138  static constexpr rank_type rank_complement_table[alphabet_size]
139  {
140  11, // T is complement of 'A'_dna15
141  12, // V is complement of 'B'_dna15
142  4, // G is complement of 'C'_dna15
143  5, // H is complement of 'D'_dna15
144  2, // C is complement of 'G'_dna15
145  3, // D is complement of 'H'_dna15
146  7, // M is complement of 'K'_dna15
147  6, // K is complement of 'M'_dna15
148  8, // N is complement of 'N'_dna15
149  14, // Y is complement of 'R'_dna15
150  10, // S is complement of 'S'_dna15
151  0, // A is complement of 'T'_dna15
152  1, // B is complement of 'V'_dna15
153  13, // W is complement of 'W'_dna15
154  9 // R is complement of 'Y'_dna15
155  };
156 
158  static constexpr rank_type rank_complement(rank_type const rank)
159  {
160  return rank_complement_table[rank];
161  }
162 
164  static constexpr char_type rank_to_char(rank_type const rank)
165  {
166  return rank_to_char_table[rank];
167  }
168 
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 inline namespace literals
192 {
193 
208 constexpr dna15 operator""_dna15(char const c) noexcept
209 {
210  return dna15{}.assign_char(c);
211 }
212 
222 inline dna15_vector operator""_dna15(char const * s, std::size_t n)
223 {
224  dna15_vector r;
225  r.resize(n);
226 
227  for (size_t i = 0; i < n; ++i)
228  r[i].assign_char(s[i]);
229 
230  return r;
231 }
233 
234 } // inline namespace literals
235 
236 } // namespace seqan3
A CRTP-base that makes defining a custom alphabet easier.
Definition: alphabet_base.hpp:81
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:104
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
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:96
The 15 letter DNA alphabet, containing all IUPAC smybols minus the gap.
Definition: dna15.hpp:51
constexpr dna15() noexcept=default
Defaulted.
A CRTP-base that refines seqan3::alphabet_base and is used by the nucleotides.
Definition: nucleotide_base.hpp:57
The 15 letter RNA alphabet, containing all IUPAC smybols minus the gap.
Definition: rna15.hpp:51
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)
Provides utilities for modifying characters.