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-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 
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 
81  template <std::same_as<rna15> t> // Accept incomplete type
82  constexpr dna15(t const & r) noexcept
83  {
84  assign_rank(r.to_rank());
85  }
87 
88 private:
91  {
92  'A',
93  'B',
94  'C',
95  'D',
96  'G',
97  'H',
98  'K',
99  'M',
100  'N',
101  'R',
102  'S',
103  'T',
104  'V',
105  'W',
106  'Y'
107  };
108 
111  {
112  [] () constexpr
113  {
115 
116  // initialize with UNKNOWN (std::array::fill unfortunately not constexpr)
117  for (auto & c : ret)
118  c = 8; // rank of 'N'
119 
120  // reverse mapping for characters and their lowercase
121  for (size_t rnk = 0u; rnk < alphabet_size; ++rnk)
122  {
123  ret[rank_to_char_table[rnk]] = rnk;
124  ret[to_lower(rank_to_char_table[rnk])] = rnk;
125  }
126 
127  // set U equal to T
128  ret['U'] = ret['T']; ret['u'] = ret['t'];
129 
130  return ret;
131  }()
132  };
133 
135  static constexpr char_type rank_to_char(rank_type const rank)
136  {
137  return rank_to_char_table[rank];
138  }
139 
141  static constexpr rank_type char_to_rank(char_type const chr)
142  {
143  using index_t = std::make_unsigned_t<char_type>;
144  return char_to_rank_table[static_cast<index_t>(chr)];
145  }
146 
149 };
150 
151 // ------------------------------------------------------------------
152 // containers
153 // ------------------------------------------------------------------
154 
161 
162 // ------------------------------------------------------------------
163 // literals
164 // ------------------------------------------------------------------
165 
176 constexpr dna15 operator""_dna15(char const c) noexcept
177 {
178  return dna15{}.assign_char(c);
179 }
180 
191 inline dna15_vector operator""_dna15(char const * s, std::size_t n)
192 {
193  dna15_vector r;
194  r.resize(n);
195 
196  for (size_t i = 0; i < n; ++i)
197  r[i].assign_char(s[i]);
198 
199  return r;
200 }
202 
203 // ------------------------------------------------------------------
204 // dna15 (deferred definition)
205 // ------------------------------------------------------------------
206 
208 {
209  'T'_dna15, // complement of 'A'_dna15
210  'V'_dna15, // complement of 'B'_dna15
211  'G'_dna15, // complement of 'C'_dna15
212  'H'_dna15, // complement of 'D'_dna15
213  'C'_dna15, // complement of 'G'_dna15
214  'D'_dna15, // complement of 'H'_dna15
215  'M'_dna15, // complement of 'K'_dna15
216  'K'_dna15, // complement of 'M'_dna15
217  'N'_dna15, // complement of 'N'_dna15
218  'Y'_dna15, // complement of 'R'_dna15
219  'S'_dna15, // complement of 'S'_dna15
220  'A'_dna15, // complement of 'T'_dna15
221  'B'_dna15, // complement of 'V'_dna15
222  'W'_dna15, // complement of 'W'_dna15
223  'R'_dna15 // complement of 'Y'_dna15
224 };
225 
226 } // 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 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
friend rna15
Befriend seqan3::rna15 so it can copy char_to_rank.
Definition: dna15.hpp:62
constexpr dna15() noexcept=default
Defaulted.
static constexpr rank_type char_to_rank(char_type const chr)
Returns the rank representation of character.
Definition: dna15.hpp:141
static constexpr char_type rank_to_char_table[alphabet_size]
The lookup table used in rank_to_char.
Definition: dna15.hpp:91
static const std::array< dna15, alphabet_size > complement_table
The complement table.
Definition: dna15.hpp:148
static constexpr char_type rank_to_char(rank_type const rank)
Returns the character representation of rank.
Definition: dna15.hpp:135
static constexpr std::array< rank_type, 256 > char_to_rank_table
Returns the rank representation of character.
Definition: dna15.hpp:111
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
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.