SeqAn3 3.4.0-rc.1
The Modern C++ library for sequence analysis.
Loading...
Searching...
No Matches
alignment/exception.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 <stdexcept>
13
15
16namespace seqan3
17{
18
21{
22public:
28};
29
40
41} // namespace seqan3
Thrown in function seqan3::erase_gap, if a position does not contain a gap.
Definition alignment/exception.hpp:21
gap_erase_failure(std::string const &s)
The constructor.
Definition alignment/exception.hpp:26
Thrown if the configuration of the alignment algorithm is invalid.
Definition alignment/exception.hpp:32
invalid_alignment_configuration(std::string const &s)
The constructor.
Definition alignment/exception.hpp:37
The main SeqAn3 namespace.
Definition aligned_sequence_concept.hpp:26
SeqAn specific customisations in the standard namespace.
Provides platform and dependency checks.
Hide me