SeqAn3 3.4.0
The Modern C++ library for sequence analysis.
Loading...
Searching...
No Matches
qualified.hpp
Go to the documentation of this file.
1// SPDX-FileCopyrightText: 2006-2025 Knut Reinert & Freie Universität Berlin
2// SPDX-FileCopyrightText: 2016-2025 Knut Reinert & MPI für molekulare Genetik
3// SPDX-License-Identifier: BSD-3-Clause
4
9
10#pragma once
11
15
16namespace seqan3
17{
18
54template <writable_alphabet sequence_alphabet_t, writable_quality_alphabet quality_alphabet_t>
55class qualified :
56 public alphabet_tuple_base<qualified<sequence_alphabet_t, quality_alphabet_t>,
57 sequence_alphabet_t,
58 quality_alphabet_t>
59{
60private:
62 using base_type = alphabet_tuple_base<qualified<sequence_alphabet_t, quality_alphabet_t>,
63 sequence_alphabet_t,
64 quality_alphabet_t>;
65
66public:
71 using sequence_alphabet_type = sequence_alphabet_t;
76 using quality_alphabet_type = quality_alphabet_t;
77
88
92 constexpr qualified() noexcept = default;
93 constexpr qualified(qualified const &) noexcept = default;
94 constexpr qualified(qualified &&) noexcept = default;
95 constexpr qualified & operator=(qualified const &) noexcept = default;
96 constexpr qualified & operator=(qualified &&) noexcept = default;
97 ~qualified() noexcept = default;
98
99 // Inherit from base:
100 using base_type::alphabet_size;
101 using base_type::base_type; // non-default constructors
102 using base_type::to_rank;
103 using base_type::operator=;
104
106 SEQAN3_DOXYGEN_ONLY((constexpr qualified(component_type const alph) noexcept {}))
108 SEQAN3_DOXYGEN_ONLY((constexpr qualified(indirect_component_type const alph) noexcept {}))
110 SEQAN3_DOXYGEN_ONLY((constexpr qualified & operator=(component_type const alph) noexcept {}))
112 SEQAN3_DOXYGEN_ONLY((constexpr qualified & operator=(indirect_component_type const alph) noexcept {}))
114
122 constexpr qualified & assign_char(char_type const c) noexcept
123 {
125 * base_type::cummulative_alph_sizes[0])
126 + (base_type::template to_component_rank<1>() * base_type::cummulative_alph_sizes[1]));
127
128 // The above is noticeably faster than (no subtraction and no division):
129 // base_type::template assign_component_rank<0>(
130 // seqan3::to_rank(seqan3::assign_char_to(c, sequence_alphabet_type{})));
131 return *this;
132 }
133
138 constexpr qualified & assign_phred(phred_type const c) noexcept
139 {
141 return *this;
142 }
143
144
152 constexpr phred_type to_phred() const noexcept
153 {
154 return rank_to_phred[to_rank()];
155 }
156
161 constexpr char_type to_char() const noexcept
162 {
163 return rank_to_char(to_rank());
164 }
165
172 constexpr qualified complement() const noexcept
173 requires nucleotide_alphabet<sequence_alphabet_t>
174 {
175 return qualified{seqan3::complement(get<0>(*this)), get<1>(*this)};
176 }
177
178
183 static constexpr bool char_is_valid(char_type const c) noexcept
184 {
186 }
187
188private:
190 static constexpr char_type rank_to_char(typename base_type::rank_type const rank)
191 {
192 return rank_to_char_table[rank];
193 }
194
196 static constexpr std::array<char_type, alphabet_size> rank_to_char_table{
197 []() constexpr
198 {
200
201 for (size_t i = 0; i < alphabet_size; ++i)
202 {
203 size_t const seq_rank =
204 (i / base_type::cummulative_alph_sizes[0]) % seqan3::alphabet_size<quality_alphabet_type>;
205
207 }
208
209 return ret;
210 }()};
211
213 static constexpr std::array<char_type, alphabet_size> rank_to_phred{
214 []() constexpr
215 {
216 std::array<char_type, alphabet_size> ret{};
217
218 for (size_t i = 0; i < alphabet_size; ++i)
219 {
220 size_t qual_rank =
221 (i / base_type::cummulative_alph_sizes[1]) % seqan3::alphabet_size<quality_alphabet_type>;
222
224 }
225
226 return ret;
227 }()};
228};
229
233template <typename sequence_alphabet_type, typename quality_alphabet_type>
236
237} // namespace seqan3
Provides seqan3::nucleotide_alphabet.
Quality alphabet concept.
Provides seqan3::alphabet_tuple_base.
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:77
friend constexpr auto get(alphabet_tuple_base &l) noexcept
Definition alphabet_tuple_base.hpp:345
constexpr qualified< sequence_alphabet_t, quality_alphabet_t > & assign_rank(rank_type const c) noexcept
static constexpr bool char_is_valid(char_type const c) noexcept
Validate whether a character is valid in the sequence alphabet.
Definition qualified.hpp:183
constexpr char_type to_char() const noexcept
Return a character. This reads the internal sequence letter.
Definition qualified.hpp:161
constexpr phred_type to_phred() const noexcept
Return the Phred score value. This reads the internal quality letter.
Definition qualified.hpp:152
alphabet_char_t< sequence_alphabet_type > char_type
Definition qualified.hpp:82
constexpr qualified(indirect_component_type const alph) noexcept
Construction via a value of a subtype that is assignable to one of the components.
Definition qualified.hpp:108
constexpr qualified complement() const noexcept
Return a qualified where the quality is preserved, but the sequence letter is complemented.
Definition qualified.hpp:172
constexpr rank_type to_rank() const noexcept
constexpr qualified & assign_phred(phred_type const c) noexcept
Assign from a Phred score value. This modifies the internal quality letter.
Definition qualified.hpp:138
static constexpr detail::min_viable_uint_t< size > alphabet_size
constexpr qualified() noexcept=default
Defaulted.
qualified(sequence_alphabet_type &&, quality_alphabet_type &&) -> qualified< std::decay_t< sequence_alphabet_type >, std::decay_t< quality_alphabet_type > >
Type deduction guide enables usage of qualified without specifying template args.
quality_alphabet_t quality_alphabet_type
Definition qualified.hpp:76
constexpr qualified & assign_char(char_type const c) noexcept
Assign from a character. This modifies the internal sequence letter.
Definition qualified.hpp:122
alphabet_phred_t< quality_alphabet_type > phred_type
Definition qualified.hpp:87
sequence_alphabet_t sequence_alphabet_type
Definition qualified.hpp:71
constexpr auto complement
Return the complement of a nucleotide object.
Definition alphabet/nucleotide/concept.hpp:102
constexpr auto assign_char_to
Assign a character to an alphabet object.
Definition alphabet/concept.hpp:517
constexpr auto to_char
Return the char representation of an alphabet object.
Definition alphabet/concept.hpp:381
constexpr auto alphabet_size
A type trait that holds the size of a (semi-)alphabet.
Definition alphabet/concept.hpp:834
decltype(seqan3::to_char(std::declval< alphabet_type const >())) alphabet_char_t
The char_type of the alphabet; defined as the return type of seqan3::to_char.
Definition alphabet/concept.hpp:393
constexpr auto assign_rank_to
Assign a rank to an alphabet object.
Definition alphabet/concept.hpp:288
constexpr auto char_is_valid_for
Returns whether a character is in the valid set of a seqan3::alphabet (usually implies a bijective ma...
Definition alphabet/concept.hpp:661
constexpr auto to_rank
Return the rank representation of a (semi-)alphabet object.
Definition alphabet/concept.hpp:152
A concept that indicates whether an alphabet represents nucleotides.
The main SeqAn3 namespace.
Definition aligned_sequence_concept.hpp:26
constexpr auto to_phred
The public getter function for the Phred representation of a quality score.
Definition alphabet/quality/concept.hpp:97
constexpr auto assign_phred_to
Assign a Phred score to a quality alphabet object.
Definition alphabet/quality/concept.hpp:225
decltype(seqan3::to_phred(std::declval< alphabet_type >())) alphabet_phred_t
The phred_type of the alphabet; defined as the return type of seqan3::to_phred.
Definition alphabet/quality/concept.hpp:109
Hide me