41template <
typename alignment_configuration_t,
typename... policies_t>
42 requires is_type_specialisation_of_v<alignment_configuration_t, configuration>
53 static_assert(!std::same_as<alignment_result_type, empty_type>,
"Alignment result type was not configured.");
122 template <indexed_sequence_pair_range indexed_sequence_pairs_t,
typename callback_t>
123 requires std::invocable<callback_t, alignment_result_type>
124 void operator()(indexed_sequence_pairs_t && indexed_sequence_pairs, callback_t && callback)
130 size_t const sequence1_size = std::ranges::distance(get<0>(
sequence_pair));
131 size_t const sequence2_size = std::ranges::distance(get<1>(
sequence_pair));
133 auto && [alignment_matrix, index_matrix] = this->acquire_matrices(sequence1_size, sequence2_size);
139 this->optimal_coordinate,
124 void operator()(indexed_sequence_pairs_t && indexed_sequence_pairs, callback_t && callback) {
…}
147 template <indexed_sequence_pair_range indexed_sequence_pairs_t,
typename callback_t>
149 auto operator()(indexed_sequence_pairs_t && indexed_sequence_pairs, callback_t && callback)
155 auto seq1_collection = indexed_sequence_pairs | views::elements<0> | views::elements<0>;
156 auto seq2_collection = indexed_sequence_pairs | views::elements<0> | views::elements<1>;
158 this->initialise_tracker(seq1_collection, seq2_collection);
161 thread_local simd_collection_t simd_seq1_collection{};
162 thread_local simd_collection_t simd_seq2_collection{};
166 this->scoring_scheme.padding_symbol);
169 this->scoring_scheme.padding_symbol);
171 size_t const sequence1_size = std::ranges::distance(simd_seq1_collection);
172 size_t const sequence2_size = std::ranges::distance(simd_seq2_collection);
174 auto && [alignment_matrix, index_matrix] = this->acquire_matrices(sequence1_size, sequence2_size);
176 compute_matrix(simd_seq1_collection, simd_seq2_collection, alignment_matrix, index_matrix);
181 original_score_t score = this->optimal_score[index]
182 - (this->padding_offsets[index] * this->scoring_scheme.padding_match_score());
183 matrix_coordinate coordinate{
row_index_type{
size_t{this->optimal_coordinate.row[index]}},
188 std::move(coordinate),
149 auto operator()(indexed_sequence_pairs_t && indexed_sequence_pairs, callback_t && callback) {
…}
215 template <
typename simd_sequence_t, std::ranges::forward_range sequence_collection_t, arithmetic padding_symbol_t>
216 requires std::ranges::output_range<simd_sequence_t, score_type>
218 sequence_collection_t & sequences,
219 padding_symbol_t
const & padding_symbol)
223 simd_sequence.clear();
224 for (
auto && simd_vector_chunk : sequences | views::to_simd<score_type>(padding_symbol))
241 template <std::ranges::forward_range sequence1_t,
242 std::ranges::forward_range sequence2_t,
243 std::ranges::input_range alignment_matrix_t,
244 std::ranges::input_range index_matrix_t>
245 requires std::ranges::forward_range<std::ranges::range_reference_t<alignment_matrix_t>>
246 && std::ranges::forward_range<std::ranges::range_reference_t<index_matrix_t>>
248 sequence2_t && sequence2,
249 alignment_matrix_t && alignment_matrix,
250 index_matrix_t && index_matrix)
256 this->reset_optimum();
258 auto alignment_matrix_it = alignment_matrix.begin();
259 auto indexed_matrix_it = index_matrix.begin();
267 for (
auto alphabet1 : sequence1)
269 *++indexed_matrix_it,
270 this->scoring_scheme_profile_column(alphabet1),
277 auto && alignment_column = *alignment_matrix_it;
278 auto && cell_index_column = *indexed_matrix_it;
280 auto alignment_column_it = alignment_column.begin();
281 auto cell_index_column_it = cell_index_column.begin();
283 this->track_last_column_cell(*alignment_column_it, *cell_index_column_it);
285 for ([[maybe_unused]]
auto && unused : sequence2)
286 this->track_last_column_cell(*++alignment_column_it, *++cell_index_column_it);
288 this->track_final_cell(*alignment_column_it, *cell_index_column_it);
309 template <std::ranges::input_range alignment_column_t,
310 std::ranges::input_range cell_index_column_t,
311 std::ranges::input_range sequence2_t>
313 cell_index_column_t && cell_index_column,
314 sequence2_t && sequence2)
320 auto first_column_it = alignment_column.begin();
321 auto cell_index_column_it = cell_index_column.begin();
322 *first_column_it = this->track_cell(this->initialise_origin_cell(), *cell_index_column_it);
328 for ([[maybe_unused]]
auto const & unused : sequence2)
332 this->track_cell(this->initialise_first_column_cell(*first_column_it), *++cell_index_column_it);
339 this->track_last_row_cell(*first_column_it, *cell_index_column_it);
360 template <std::ranges::input_range alignment_column_t,
361 std::ranges::input_range cell_index_column_t,
362 typename alphabet1_t,
363 std::ranges::input_range sequence2_t>
366 cell_index_column_t && cell_index_column,
367 alphabet1_t
const & alphabet1,
368 sequence2_t && sequence2)
376 auto alignment_column_it = alignment_column.begin();
377 auto cell_index_column_it = cell_index_column.begin();
379 auto cell = *alignment_column_it;
381 *alignment_column_it = this->track_cell(this->initialise_first_row_cell(cell), *cell_index_column_it);
387 for (
auto const & alphabet2 : sequence2)
389 auto cell = *++alignment_column_it;
391 *alignment_column_it = this->track_cell(
392 this->compute_inner_cell(
diagonal, cell, this->scoring_scheme.score(alphabet1, alphabet2)),
393 *++cell_index_column_it);
401 this->track_last_row_cell(*alignment_column_it, *cell_index_column_it);
Provides seqan3::aligned_allocator.
Provides helper type traits for the configuration and execution of the alignment algorithm.
T back_inserter(T... args)
Allocates uninitialized storage whose memory-alignment is specified by alignment.
Definition aligned_allocator.hpp:70
The alignment algorithm type to compute standard pairwise alignment using dynamic programming.
Definition pairwise_alignment_algorithm.hpp:44
pairwise_alignment_algorithm(alignment_configuration_t const &config)
Constructs and initialises the algorithm using the alignment configuration.
Definition pairwise_alignment_algorithm.hpp:73
void compute_matrix(sequence1_t &&sequence1, sequence2_t &&sequence2, alignment_matrix_t &&alignment_matrix, index_matrix_t &&index_matrix)
Compute the actual alignment.
Definition pairwise_alignment_algorithm.hpp:247
pairwise_alignment_algorithm & operator=(pairwise_alignment_algorithm const &)=default
Defaulted.
pairwise_alignment_algorithm(pairwise_alignment_algorithm &&)=default
Defaulted.
~pairwise_alignment_algorithm()=default
Defaulted.
pairwise_alignment_algorithm & operator=(pairwise_alignment_algorithm &&)=default
Defaulted.
pairwise_alignment_algorithm(pairwise_alignment_algorithm const &)=default
Defaulted.
pairwise_alignment_algorithm()=default
Defaulted.
typename traits_type::score_type score_type
The configured score type.
Definition pairwise_alignment_algorithm.hpp:49
::is_vectorised &&std::invocable< callback_t, alignment_result_type > auto operator()(indexed_sequence_pairs_t &&indexed_sequence_pairs, callback_t &&callback)
This is an overloaded member function, provided for convenience. It differs from the above function o...
Definition pairwise_alignment_algorithm.hpp:149
void compute_column(alignment_column_t &&alignment_column, cell_index_column_t &&cell_index_column, alphabet1_t const &alphabet1, sequence2_t &&sequence2)
Initialise any column of the alignment matrix except the first one.
Definition pairwise_alignment_algorithm.hpp:365
void initialise_column(alignment_column_t &&alignment_column, cell_index_column_t &&cell_index_column, sequence2_t &&sequence2)
Initialise the first column of the alignment matrix.
Definition pairwise_alignment_algorithm.hpp:312
void convert_batch_of_sequences_to_simd_vector(simd_sequence_t &simd_sequence, sequence_collection_t &sequences, padding_symbol_t const &padding_symbol)
Converts a batch of sequences to a sequence of simd vectors.
Definition pairwise_alignment_algorithm.hpp:217
typename traits_type::alignment_result_type alignment_result_type
The configured alignment result type.
Definition pairwise_alignment_algorithm.hpp:51
void operator()(indexed_sequence_pairs_t &&indexed_sequence_pairs, callback_t &&callback)
Computes the pairwise sequence alignment for the given range over indexed sequence pairs.
Definition pairwise_alignment_algorithm.hpp:124
Provides seqan3::views::elements.
Provides seqan3::detail::empty_type.
@ diagonal
Trace comes from the diagonal entry.
A helper concept to check if a type is a sequence pair.
The basis for seqan3::alphabet, but requires only rank interface (not char).
The generic simd concept.
The internal SeqAn3 namespace.
Definition aligned_sequence_concept.hpp:26
A traits type for the alignment algorithm that exposes static information stored within the alignment...
Definition alignment/pairwise/detail/type_traits.hpp:80
static constexpr bool is_vectorised
Flag to indicate vectorised mode.
Definition alignment/pairwise/detail/type_traits.hpp:112
std::conditional_t< is_vectorised, simd_type_t< original_score_type >, original_score_type > score_type
The score type for the alignment algorithm.
Definition alignment/pairwise/detail/type_traits.hpp:133
static constexpr size_t alignments_per_vector
The number of alignments that can be computed in one simd vector.
Definition alignment/pairwise/detail/type_traits.hpp:146
decltype(determine_alignment_result_type()) alignment_result_type
The alignment result type if present. Otherwise seqan3::detail::empty_type.
Definition alignment/pairwise/detail/type_traits.hpp:137
typename std::remove_reference_t< decltype(std::declval< configuration_t >().get_or(align_cfg::score_type< int32_t >{}))>::type original_score_type
The original score type selected by the user.
Definition alignment/pairwise/detail/type_traits.hpp:131
A strong type for designated initialisation of the column index of a matrix.
Definition matrix_coordinate.hpp:29
A strong type for designated initialisation of the row index of a matrix.
Definition matrix_coordinate.hpp:58
Provides seqan3::detail::to_simd view.
Provides traits to inspect some information of a type, for example its name.