SeqAn3 3.3.0-rc.1
The Modern C++ library for sequence analysis.
aa27.hpp
Go to the documentation of this file.
1// -----------------------------------------------------------------------------------------------------
2// Copyright (c) 2006-2022, Knut Reinert & Freie Universität Berlin
3// Copyright (c) 2016-2022, 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
20
21namespace seqan3
22{
45class aa27 : public aminoacid_base<aa27, 27>
46{
47private:
50
52 friend base_t;
55 friend base_t::base_t;
57
58public:
62 constexpr aa27() noexcept = default;
63 constexpr aa27(aa27 const &) noexcept = default;
64 constexpr aa27(aa27 &&) noexcept = default;
65 constexpr aa27 & operator=(aa27 const &) noexcept = default;
66 constexpr aa27 & operator=(aa27 &&) noexcept = default;
67 ~aa27() noexcept = default;
68
69 using base_t::base_t;
71
72private:
74 static constexpr char_type rank_to_char_table[alphabet_size]{'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I',
75 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R',
76 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z', '*'};
77
79 static constexpr char_type rank_to_char(rank_type const rank)
80 {
81 return rank_to_char_table[rank];
82 }
83
85 static constexpr rank_type char_to_rank(char_type const chr)
86 {
87 using index_t = std::make_unsigned_t<char_type>;
88 return char_to_rank_table[static_cast<index_t>(chr)];
89 }
90
91 // clang-format off
93 static constexpr std::array<rank_type, 256> char_to_rank_table
94 {
95 []() constexpr {
97
98 // initialize with 'X' (UNKNOWN)
99 ret.fill(23u);
100
101 // reverse mapping for characters and their lowercase
102 for (rank_type rnk = 0u; rnk < alphabet_size; ++rnk)
103 {
104 ret[static_cast<rank_type>(rank_to_char_table[rnk])] = rnk;
105 ret[static_cast<rank_type>(to_lower(rank_to_char_table[rnk]))] = rnk;
106 }
107
108 return ret;
109 }()
110 };
111};
112// clang-format on
113
114// ------------------------------------------------------------------
115// containers
116// ------------------------------------------------------------------
117
124
125// ------------------------------------------------------------------
126// literals
127// ------------------------------------------------------------------
128inline namespace literals
129{
130
145constexpr aa27 operator""_aa27(char const c) noexcept
146{
147 return aa27{}.assign_char(c);
148}
149
161inline aa27_vector operator""_aa27(char const * const s, size_t const n)
162{
163 aa27_vector r;
164 r.resize(n);
165
166 for (size_t i = 0; i < n; ++i)
167 r[i].assign_char(s[i]);
168
169 return r;
170}
172
173} // namespace literals
174
175} // namespace seqan3
Provides seqan3::aminoacid_alphabet.
Provides seqan3::aminoacid_base.
The twenty-seven letter amino acid alphabet..
Definition: aa27.hpp:46
constexpr aa27() noexcept=default
Defaulted.
constexpr derived_type & assign_char(char_type const chr) noexcept
Assign from a character, implicitly converts invalid characters.
Definition: alphabet_base.hpp:163
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:80
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:199
std::conditional_t< std::same_as< char, void >, char, char > char_type
The char representation; conditional needed to make semi alphabet definitions legal.
Definition: alphabet_base.hpp:72
A CRTP-base that refines seqan3::alphabet_base and is used by the amino acids.
Definition: aminoacid_base.hpp:32
T fill(T... args)
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:83
T resize(T... args)
Provides utilities for modifying characters.