SeqAn3  3.0.3
The Modern C++ library for sequence analysis.
phred94.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 
16 
17 namespace seqan3
18 {
19 
43 class phred94 : public phred_base<phred94, 94>
44 {
45 private:
48 
50  friend base_t;
52  friend base_t::base_t;
54 
55 public:
59  constexpr phred94() noexcept = default;
60  constexpr phred94(phred94 const &) noexcept = default;
61  constexpr phred94(phred94 &&) noexcept = default;
62  constexpr phred94 & operator=(phred94 const &) noexcept = default;
63  constexpr phred94 & operator=(phred94 &&) noexcept = default;
64  ~phred94() noexcept = default;
65 
66 #ifdef SEQAN3_DEPRECATED_310
72  {
73  assign_phred(p);
74  }
75 #endif // SEQAN3_DEPRECATED_310
76 
77  // Inherit converting constructor
78  using base_t::base_t;
80 
88  static constexpr phred_type offset_phred{0};
89 
94  static constexpr char_type offset_char{'!'};
96 };
97 
98 inline namespace literals
99 {
100 
114 constexpr phred94 operator""_phred94(char const c) noexcept
115 {
116  return phred94{}.assign_char(c);
117 }
118 
130 inline std::vector<phred94> operator""_phred94(char const * s, std::size_t n)
131 {
133  r.resize(n);
134 
135  for (size_t i = 0; i < n; ++i)
136  r[i].assign_char(s[i]);
137 
138  return r;
139 }
141 
142 } // inline namespace literals
143 
144 } // namespace seqan3
A CRTP-base that makes defining a custom alphabet easier.
Definition: alphabet_base.hpp:81
constexpr derived_type & assign_char(char_type const chr) noexcept
Assign from a character, implicitly converts invalid characters.
Definition: alphabet_base.hpp:211
Quality type for PacBio Phred scores of HiFi reads.
Definition: phred94.hpp:44
static constexpr char_type offset_char
The projection offset between char and rank score representation.
Definition: phred94.hpp:94
static constexpr phred_type offset_phred
The projection offset between Phred and rank score representation.
Definition: phred94.hpp:88
constexpr phred94() noexcept=default
Defaulted.
constexpr phred94(phred_type const p)
Allow construction from the Phred score value.
Definition: phred94.hpp:71
A CRTP-base that refines seqan3::alphabet_base and is used by the quality alphabets.
Definition: phred_base.hpp:31
constexpr phred94 & assign_phred(phred_type const p) noexcept
Assign from the numeric Phred score value.
Definition: phred_base.hpp:137
int8_t phred_type
The integer representation of the quality score.
Definition: phred_base.hpp:40
The main SeqAn3 namespace.
Definition: aligned_sequence_concept.hpp:29
Provides seqan3::phred42 quality scores.
#define SEQAN3_DEPRECATED_310
Deprecation message for SeqAn 3.1.0 release.
Definition: platform.hpp:203
T resize(T... args)