31template <arithmetic score_t>
35 static_assert(std::floating_point<score_t> || std::signed_integral<score_t>,
36 "The selected score type must be a signed integral type or floating point type.");
55 static constexpr seqan3::detail::align_config_id
id{seqan3::detail::align_config_id::score_type};
Provides some utility functions for the alignment configurations.
A configuration element to set the score type used in the alignment algorithm.
Definition align_config_score_type.hpp:33
~score_type()=default
Defaulted.
constexpr score_type(score_type const &)=default
Defaulted.
constexpr score_type(score_type &&)=default
Defaulted.
constexpr score_type & operator=(score_type &&)=default
Defaulted.
score_t type
The selected score type.
Definition align_config_score_type.hpp:39
constexpr score_type()=default
Defaulted.
constexpr score_type & operator=(score_type const &)=default
Defaulted.
A special sub namespace for the alignment configurations.
Definition align_config_band.hpp:22
Provides seqan3::pipeable_config_element.
Adds pipe interface to configuration elements.
Definition pipeable_config_element.hpp:29
Provides concepts that do not have equivalents in C++20.