SeqAn3 3.4.0-rc.1
The Modern C++ library for sequence analysis.
Loading...
Searching...
No Matches
concept.hpp File Reference

Quality alphabet concept. More...

+ Include dependency graph for alphabet/quality/concept.hpp:
+ This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

struct  seqan3::detail::adl_only::assign_phred_to_cpo
 seqan3::detail::customisation_point_object (CPO) definition for seqan3::assign_phred_to. More...
 
struct  seqan3::detail::adl_only::to_phred_cpo
 seqan3::detail::customisation_point_object (CPO) definition for seqan3::to_phred. More...
 

Namespaces

namespace  seqan3
 The main SeqAn3 namespace.
 
namespace  seqan3::detail
 The internal SeqAn3 namespace.
 

Typedefs

template<typename alphabet_type >
using seqan3::alphabet_phred_t = decltype(seqan3::to_phred(std::declval< alphabet_type >()))
 The phred_type of the alphabet; defined as the return type of seqan3::to_phred.
 

Functions

template<typename... args_t>
void seqan3::detail::adl_only::assign_phred_to (args_t...)=delete
 Poison-pill overload to prevent non-ADL forms of unqualified lookup.
 
template<typename... args_t>
void seqan3::detail::adl_only::to_phred (args_t...)=delete
 Poison-pill overload to prevent non-ADL forms of unqualified lookup.
 

Variables

Function objects (Quality)
constexpr auto seqan3::assign_phred_to = detail::adl_only::assign_phred_to_cpo{}
 Assign a Phred score to a quality alphabet object.
 
constexpr auto seqan3::to_phred = detail::adl_only::to_phred_cpo{}
 The public getter function for the Phred representation of a quality score.
 

Detailed Description

Quality alphabet concept.

Author
Marie Hoffmann <marie.hoffmann AT fu-berlin.de>
Jörg Winkler <j.winkler AT fu-berlin.de>
Hide me