SeqAn3 3.4.0-rc.1
The Modern C++ library for sequence analysis.
Loading...
Searching...
No Matches
align_config_min_score.hpp
Go to the documentation of this file.
1// SPDX-FileCopyrightText: 2006-2024 Knut Reinert & Freie Universität Berlin
2// SPDX-FileCopyrightText: 2016-2024 Knut Reinert & MPI für molekulare Genetik
3// SPDX-License-Identifier: BSD-3-Clause
4
10#pragma once
11
12#include <limits>
13
16
17namespace seqan3::align_cfg
18{
36{
37public:
40
44 constexpr min_score() noexcept = default;
45 constexpr min_score(min_score const &) noexcept = default;
46 constexpr min_score(min_score &&) noexcept = default;
47 constexpr min_score & operator=(min_score const &) noexcept = default;
48 constexpr min_score & operator=(min_score &&) noexcept = default;
49 ~min_score() noexcept = default;
50
55 constexpr min_score(const int32_t score) : score{score}
56 {}
58
61};
62
63} // namespace seqan3::align_cfg
Provides some utility functions for the alignment configurations.
Sets the minimal score (maximal errors) allowed during an distance computation e.g....
Definition align_config_min_score.hpp:36
int32_t score
Minimal score for the distance computation [default: -infinity].
Definition align_config_min_score.hpp:39
constexpr min_score() noexcept=default
Defaulted.
align_config_id
An internal enum to check for a consistent configuration object.
Definition alignment/configuration/detail.hpp:21
@ min_score
ID for the min_score option.
T lowest(T... args)
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
Hide me