SeqAn3 3.4.0-rc.4
The Modern C++ library for sequence analysis.
Loading...
Searching...
No Matches
align_pairwise.hpp
Go to the documentation of this file.
1// SPDX-FileCopyrightText: 2006-2025 Knut Reinert & Freie Universität Berlin
2// SPDX-FileCopyrightText: 2016-2025 Knut Reinert & MPI für molekulare Genetik
3// SPDX-License-Identifier: BSD-3-Clause
4
10#pragma once
11
12#include <concepts>
13#include <functional>
14#include <iostream>
15#include <ranges>
16#include <tuple>
17#include <type_traits>
18
25#include <seqan3/utility/simd/simd.hpp>
26#include <seqan3/utility/simd/simd_traits.hpp>
28
29namespace seqan3
30{
31
126template <typename sequence_t, typename alignment_config_t>
127 requires detail::align_pairwise_single_input<sequence_t>
128 && std::copy_constructible<std::remove_reference_t<sequence_t>>
129 && detail::is_type_specialisation_of_v<alignment_config_t, configuration>
130constexpr auto align_pairwise(sequence_t && seq, alignment_config_t const & config)
131{
132 using std::get;
133
134 if constexpr (std::is_lvalue_reference_v<sequence_t>) // Forward tuple elements as references.
135 {
136 return align_pairwise(std::tie(get<0>(seq), get<1>(seq)), config);
137 }
138 else
139 {
140 static_assert(std::tuple_size_v<std::remove_reference_t<sequence_t>> == 2,
141 "Alignment configuration error: Expects exactly two sequences for pairwise alignments.");
142
143 static_assert(std::ranges::viewable_range<std::tuple_element_t<0, std::remove_reference_t<sequence_t>>>
144 && std::ranges::viewable_range<std::tuple_element_t<1, std::remove_reference_t<sequence_t>>>,
145 "Alignment configuration error: The tuple elements must model std::ranges::viewable_range.");
146
147 return align_pairwise(std::views::single(std::forward<sequence_t>(seq)), config);
148 }
149}
150
152template <typename sequence_t, typename alignment_config_t>
153 requires detail::align_pairwise_range_input<sequence_t>
154 && detail::is_type_specialisation_of_v<alignment_config_t, configuration>
155constexpr auto align_pairwise(sequence_t && sequences, alignment_config_t const & config)
156{
157 using first_seq_t = std::tuple_element_t<0, std::ranges::range_value_t<sequence_t>>;
158 using second_seq_t = std::tuple_element_t<1, std::ranges::range_value_t<sequence_t>>;
159
160 static_assert(std::ranges::random_access_range<first_seq_t> && std::ranges::sized_range<first_seq_t>,
161 "Alignment configuration error: The sequence must model random_access_range and sized_range.");
162 static_assert(std::ranges::random_access_range<second_seq_t> && std::ranges::sized_range<second_seq_t>,
163 "Alignment configuration error: The sequence must model random_access_range and sized_range.");
164
165 // Pipe with std::views::all to allow rvalue non-view ranges.
166 auto seq_view = std::forward<sequence_t>(sequences) | std::views::all;
167 // Configure the alignment algorithm.
168 auto && [algorithm, complete_config] = detail::alignment_configurator::configure<decltype(seq_view)>(config);
169
170 using complete_config_t = std::remove_cvref_t<decltype(complete_config)>;
171 using traits_t = detail::alignment_configuration_traits<complete_config_t>;
172
173 auto indexed_sequence_chunk_view =
174 views::zip(seq_view, std::views::iota(0)) | views::chunk(traits_t::alignments_per_vector);
175
176 using indexed_sequences_t = decltype(indexed_sequence_chunk_view);
177 using alignment_result_t = typename traits_t::alignment_result_type;
179 detail::execution_handler_parallel,
180 detail::execution_handler_sequential>;
181 using executor_t = detail::
182 algorithm_executor_blocking<indexed_sequences_t, decltype(algorithm), alignment_result_t, execution_handler_t>;
183
184 // Select the execution handler for the alignment configuration.
185 auto select_execution_handler = [parallel = complete_config.get_or(align_cfg::parallel{})]()
186 {
187 if constexpr (std::same_as<execution_handler_t, detail::execution_handler_parallel>)
188 {
189 auto thread_count = parallel.thread_count;
190 if (!thread_count)
191 throw std::runtime_error{"You must configure the number of threads in seqan3::align_cfg::parallel."};
192
193 return execution_handler_t{*thread_count};
194 }
195 else
196 {
197 return execution_handler_t{};
198 }
199 };
200
201 if constexpr (traits_t::is_one_way_execution) // Just compute alignment and wait until all alignments are computed.
202 select_execution_handler().bulk_execute(algorithm,
203 indexed_sequence_chunk_view,
204 get<align_cfg::on_result>(complete_config).callback);
205 else // Require two way execution: return the range over the alignments.
206 return algorithm_result_generator_range{executor_t{std::move(indexed_sequence_chunk_view),
207 std::move(algorithm),
208 alignment_result_t{},
209 select_execution_handler()}};
210}
212
213} // namespace seqan3
Provides seqan3::detail::algorithm_executor_blocking.
Provides seqan3::detail::algorithm_result_generator_range.
Provides concepts needed internally for the alignment algorithms.
Provides helper type traits for the configuration and execution of the alignment algorithm.
Provides seqan3::detail::alignment_selector.
Provides seqan3::alignment_result.
Provides various type traits on generic types.
seqan3::detail::parallel_mode< std::integral_constant< seqan3::detail::align_config_id, seqan3::detail::align_config_id::parallel > > parallel
Enables the parallel execution of the alignment algorithm if possible for the given configuration.
Definition align_config_parallel.hpp:35
constexpr auto align_pairwise(sequence_t &&seq, alignment_config_t const &config)
Computes the pairwise alignment for a pair of sequences or a range over sequence pairs.
Definition align_pairwise.hpp:130
@ seq
The "sequence", usually a range of nucleotides or amino acids.
seqan::stl::views::zip zip
A view adaptor that takes several views and returns tuple-like values from every i-th element of each...
Definition zip.hpp:24
seqan::stl::views::chunk chunk
A view adaptor that divides a range into chunks. <dl class="no-api">This entity is not part of the Se...
Definition chunk.hpp:23
The main SeqAn3 namespace.
Definition aligned_sequence_concept.hpp:26
T tie(T... args)
Hide me