SeqAn3  3.0.1
The Modern C++ library for sequence analysis.
align_config_max_error.hpp
Go to the documentation of this file.
1 // -----------------------------------------------------------------------------------------------------
2 // Copyright (c) 2006-2020, Knut Reinert & Freie Universität Berlin
3 // Copyright (c) 2016-2020, 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 
13 #pragma once
14 
17 
18 namespace seqan3::align_cfg
19 {
36 struct max_error : public pipeable_config_element<max_error, uint32_t>
37 {
40  static constexpr detail::align_config_id id{detail::align_config_id::max_error};
41 };
42 
43 } // namespace seqan3::align_cfg
pipeable_config_element.hpp
Provides seqan3::pipeable_config_element.
seqan3::align_cfg
A special sub namespace for the alignment configurations.
Definition: align_config_aligned_ends.hpp:514
seqan3::pipeable_config_element
Adds pipe interface to configuration elements.
Definition: pipeable_config_element.hpp:30
seqan3::align_cfg::max_error
Sets the maximal errors allowed during an edit distance computation.
Definition: align_config_max_error.hpp:36
detail.hpp
Provides some utility functions for the alignment configurations.