SeqAn3 3.4.0-rc.1
The Modern C++ library for sequence analysis.
Loading...
Searching...
No Matches
align_config_edit.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
16
17namespace seqan3::align_cfg
18{
19
48inline constexpr configuration edit_scheme =
49 scoring_scheme{nucleotide_scoring_scheme{}} | gap_cost_affine{open_score{0}, extension_score{-1}};
50
51} // namespace seqan3::align_cfg
Provides seqan3::align_config::gap_cost_affine.
Provides seqan3::align_cfg::scoring_scheme.
Sets the scoring scheme for the alignment algorithm.
Definition align_config_scoring_scheme.hpp:42
Collection of elements to configure an algorithm.
Definition configuration.hpp:42
A data structure for managing and computing the score of two nucleotides.
Definition nucleotide_scoring_scheme.hpp:35
Provides seqan3::configuration and utility functions.
constexpr configuration edit_scheme
Shortcut for edit distance configuration.
Definition align_config_edit.hpp:48
A special sub namespace for the alignment configurations.
Definition align_config_band.hpp:22
Provides seqan3::nucleotide_scoring_scheme.
Hide me