SeqAn3 3.1.0
The Modern C++ library for sequence analysis.
default_configuration.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
14#pragma once
15
21
22namespace seqan3::search_cfg
23{
24
34 max_error_substitution{error_count{0}} |
35 max_error_insertion{error_count{0}} |
36 max_error_deletion{error_count{0}} |
37 output_query_id{} |
38 output_reference_id{} |
39 output_reference_begin_position{} |
40 hit_all{};
41} // namespace seqan3::search_cfg
Collection of elements to configure an algorithm.
Definition: configuration.hpp:45
Configuration element that represents the number or rate of total errors.
Definition: max_error.hpp:37
Provides seqan3::configuration and utility functions.
const configuration default_configuration
The default configuration: Compute all exact matches.
Definition: default_configuration.hpp:33
Provides the configuration to define the hit strategies "hit_strata", "hit_all", "hit_all_best",...
Provides the configuration for maximum number of errors for all error types.
A special sub namespace for the search configurations.
Provides the configuration for the content of the search result.
A strong type of underlying type uint8_t that represents the number of errors.
Definition: max_error_common.hpp:32