SeqAn3  3.0.3
The Modern C++ library for sequence analysis.
rna15.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 // rna15
22 // ------------------------------------------------------------------
23 
24 namespace seqan3
25 {
26 
50 class rna15 : public nucleotide_base<rna15, 15>
51 {
52 private:
55 
57  friend base_t;
59  friend base_t::base_t;
61 
62 public:
66  constexpr rna15() noexcept = default;
67  constexpr rna15(rna15 const &) noexcept = default;
68  constexpr rna15(rna15 &&) noexcept = default;
69  constexpr rna15 & operator=(rna15 const &) noexcept = default;
70  constexpr rna15 & operator=(rna15 &&) noexcept = default;
71  ~rna15() noexcept = default;
72 
73  using base_t::base_t;
74 
82  template <std::same_as<dna15> t>
83  constexpr rna15(t const & r) noexcept
84 #if SEQAN3_WORKAROUND_GCC_90897
85  requires true
86 #endif
87  {
88  assign_rank(r.to_rank());
89  }
91 
92 private:
94  static constexpr char_type rank_to_char_table[alphabet_size]
95  {
96  'A',
97  'B',
98  'C',
99  'D',
100  'G',
101  'H',
102  'K',
103  'M',
104  'N',
105  'R',
106  'S',
107  'U',
108  'V',
109  'W',
110  'Y'
111  };
112 
114  static constexpr rank_type rank_complement(rank_type const rank)
115  {
116  return dna15::rank_complement(rank);
117  }
118 
120  static constexpr char_type rank_to_char(rank_type const rank)
121  {
122  return rank_to_char_table[rank];
123  }
124 
126  static constexpr rank_type char_to_rank(char_type const chr)
127  {
128  return dna15::char_to_rank(chr);
129  }
130 };
131 
132 // ------------------------------------------------------------------
133 // containers
134 // ------------------------------------------------------------------
135 
142 
143 // ------------------------------------------------------------------
144 // literals
145 // ------------------------------------------------------------------
146 inline namespace literals
147 {
148 
163 constexpr rna15 operator""_rna15(char const c) noexcept
164 {
165  return rna15{}.assign_char(c);
166 }
167 
177 inline rna15_vector operator""_rna15(char const * s, std::size_t n)
178 {
179  rna15_vector r;
180  r.resize(n);
181 
182  for (size_t i = 0; i < n; ++i)
183  r[i].assign_char(s[i]);
184 
185  return r;
186 }
188 
189 } // inline namespace literals
190 
191 } // 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
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
constexpr rna15() noexcept=default
Defaulted.
Provides seqan3::dna15, container aliases and string literals.
The main SeqAn3 namespace.
Definition: aligned_sequence_concept.hpp:29
SeqAn specific customisations in the standard namespace.
Provides seqan3::nucleotide_base.
T resize(T... args)