SeqAn3  3.0.0
The Modern C++ library for sequence analysis.
rna4.hpp
Go to the documentation of this file.
1 // -----------------------------------------------------------------------------------------------------
2 // Copyright (c) 2006-2019, Knut Reinert & Freie Universität Berlin
3 // Copyright (c) 2016-2019, 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 // rna4
22 // ------------------------------------------------------------------
23 
24 namespace seqan3
25 {
26 
46 class rna4 : public nucleotide_base<rna4, 4>
47 {
48 private:
51 
53  friend base_t;
55  friend base_t::base_t;
57 
58 public:
62  constexpr rna4() noexcept = default;
63  constexpr rna4(rna4 const &) noexcept = default;
64  constexpr rna4(rna4 &&) noexcept = default;
65  constexpr rna4 & operator=(rna4 const &) noexcept = default;
66  constexpr rna4 & operator=(rna4 &&) noexcept = default;
67  ~rna4() noexcept = default;
68 
69  using base_t::base_t;
70 
72  constexpr rna4(dna4 const & r) noexcept
73  {
74  assign_rank(r.to_rank());
75  }
77 
78 protected:
80 
82  static constexpr char_type rank_to_char[alphabet_size]
83  {
84  'A',
85  'C',
86  'G',
87  'U'
88  };
89 
91  static constexpr std::array<rank_type, 256> char_to_rank = dna4::char_to_rank;
92 
94  static const std::array<rna4, alphabet_size> complement_table;
95 };
96 
97 // ------------------------------------------------------------------
98 // containers
99 // ------------------------------------------------------------------
100 
104 
105 // ------------------------------------------------------------------
106 // literals
107 // ------------------------------------------------------------------
108 
117 constexpr rna4 operator""_rna4(char const c) noexcept
118 {
119  return rna4{}.assign_char(c);
120 }
121 
131 inline rna4_vector operator""_rna4(char const * s, std::size_t n)
132 {
133  rna4_vector r;
134  r.resize(n);
135 
136  for (size_t i = 0; i < n; ++i)
137  r[i].assign_char(s[i]);
138 
139  return r;
140 }
142 
143 // ------------------------------------------------------------------
144 // rna4 (deferred definition)
145 // ------------------------------------------------------------------
146 
147 constexpr std::array<rna4, rna4::alphabet_size> rna4::complement_table
148 {
149  'U'_rna4, // complement of 'A'_rna4
150  'G'_rna4, // complement of 'C'_rna4
151  'C'_rna4, // complement of 'G'_rna4
152  'A'_rna4 // complement of 'U'_rna4
153 };
154 
155 } // namespace seqan3
The four letter DNA alphabet of A,C,G,T.
Definition: dna4.hpp:48
constexpr rna4 & operator=(rna4 const &) noexcept=default
Defaulted.
The main SeqAn3 namespace.
T resize(T... args)
constexpr rna4(dna4 const &r) noexcept
Allow implicit construction from dna/rna of the same size.
Definition: rna4.hpp:72
constexpr rna4 & assign_rank(rank_type const c) noexcept
Assign from a numeric value.
Definition: alphabet_base.hpp:166
~rna4() noexcept=default
Defaulted.
Provides seqan3::nucleotide_base.
constexpr rna4() noexcept=default
Defaulted.
static detail::min_viable_uint_t< size > constexpr alphabet_size
The size of the alphabet, i.e. the number of different values it can take.
Definition: alphabet_base.hpp:175
The four letter RNA alphabet of A,C,G,U.
Definition: rna4.hpp:46
A CRTP-base that refines seqan3::alphabet_base and is used by the nucleotides.
Definition: nucleotide_base.hpp:40
Provides seqan3::dna4, container aliases and string literals.
constexpr derived_type & assign_char(char_type const c) noexcept
Assign from a character, implicitly converts invalid characters.
Definition: alphabet_base.hpp:141
std::conditional_t< std::Same< char, void >, char, char > char_type
The char representation; conditional needed to make semi alphabet definitions legal.
Definition: alphabet_base.hpp:61