SeqAn3 3.4.0-rc.4
The Modern C++ library for sequence analysis.
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages Concepts
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
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:
65
66public:
77
88
92 constexpr qualified() noexcept = default;
98
99 // Inherit from base:
101 using base_type::base_type; // non-default constructors
104
112 SEQAN3_DOXYGEN_ONLY((constexpr qualified & operator=(indirect_component_type const alph) noexcept {}))
114
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 }
144
153 {
154 return rank_to_phred[to_rank()];
155 }
156
162 {
163 return rank_to_char(to_rank());
164 }
165
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 {
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
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:196
constexpr derived_type & assign_rank(rank_type const c) noexcept
Assign from a numeric value.
Definition alphabet_base.hpp:184
The CRTP base for a combined alphabet that contains multiple values of different alphabets at the sam...
Definition alphabet_tuple_base.hpp:113
A "pretty printer" for most SeqAn data structures and related types.
Definition debug_stream_type.hpp:79
Joins an arbitrary alphabet with a quality alphabet.
Definition qualified.hpp:59
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
Equals the char_type of sequence_alphabet_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 qualified & assign_phred(phred_type const c) noexcept
Assign from a Phred score value. This modifies the internal quality letter.
Definition qualified.hpp:138
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
Second template parameter as member 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
sequence_alphabet_t sequence_alphabet_type
First template parameter as member type.
Definition qualified.hpp:71
constexpr auto complement
Return the complement of a nucleotide object.
Definition alphabet/nucleotide/concept.hpp:102
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
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 assign_rank_to
Assign a rank to an alphabet object.
Definition alphabet/concept.hpp:288
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
Hide me