25#include <seqan3/utility/simd/simd.hpp>
26#include <seqan3/utility/simd/simd_traits.hpp>
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>
134 if constexpr (std::is_lvalue_reference_v<sequence_t>)
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.");
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.");
147 return align_pairwise(std::views::single(std::forward<sequence_t>(
seq)), config);
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)
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>>;
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.");
166 auto seq_view = std::forward<sequence_t>(sequences) | std::views::all;
168 auto && [algorithm, complete_config] = detail::alignment_configurator::configure<decltype(seq_view)>(config);
171 using traits_t = detail::alignment_configuration_traits<complete_config_t>;
173 auto indexed_sequence_chunk_view =
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>;
185 auto select_execution_handler = [parallel = complete_config.get_or(
align_cfg::parallel{})]()
187 if constexpr (std::same_as<execution_handler_t, detail::execution_handler_parallel>)
189 auto thread_count =
parallel.thread_count;
191 throw std::runtime_error{
"You must configure the number of threads in seqan3::align_cfg::parallel."};
193 return execution_handler_t{*thread_count};
197 return execution_handler_t{};
201 if constexpr (traits_t::is_one_way_execution)
202 select_execution_handler().bulk_execute(algorithm,
203 indexed_sequence_chunk_view,
204 get<align_cfg::on_result>(complete_config).callback);
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()}};
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