SeqAn3  3.0.0
The Modern C++ library for sequence analysis.
align_config_band.hpp
Go to the documentation of this file.
1 // -----------------------------------------------------------------------------------------------------
2 // Copyright (c) 2006-2019, Knut Reinert & Freie Universität Berlin
3 // Copyright (c) 2016-2019, 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 
19 
20 namespace seqan3::align_cfg
21 {
22 
40 template <typename band_t>
44 struct band : public pipeable_config_element<band<band_t>, band_t>
45 {
48  static constexpr detail::align_config_id id{detail::align_config_id::band};
49 };
50 
60 template <typename band_t>
61 band(band_t) -> band<band_t>;
63 
64 } // namespace seqan3::detail
Configuration element for setting the band.
Definition: align_config_band.hpp:44
Adds pipe interface to configuration elements.
Definition: pipeable_config_element.hpp:30
A special sub namespace for the alignment configurations.
Definition: align_config_aligned_ends.hpp:514
Provides seqan3::band_static.
Provides some utility functions for the alignment configurations.
Provides seqan3::pipeable_config_element.
The concept std::Same<T, U> is satisfied if and only if T and U denote the same type.