SeqAn3  3.0.2
The Modern C++ library for sequence analysis.
edit_distance_fwd.hpp
Go to the documentation of this file.
1 // -----------------------------------------------------------------------------------------------------
2 // Copyright (c) 2006-2020, Knut Reinert & Freie Universität Berlin
3 // Copyright (c) 2016-2020, 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 
13 #pragma once
14 
19 #include <seqan3/core/platform.hpp>
21 #include <seqan3/std/concepts>
22 #include <seqan3/std/ranges>
23 
24 namespace seqan3::detail
25 {
26 template <typename word_t, typename score_t, bool is_semi_global, bool use_max_errors>
27 class edit_distance_score_matrix_full; //forward declaration
28 
29 template <typename word_t, bool is_semi_global, bool use_max_errors>
30 class edit_distance_trace_matrix_full; //forward declaration
31 
33 template <typename state_t, typename ...>
34 struct empty_state
35 {};
36 
38 template <bool enabled, typename state_t>
40 
45 template <bool B, template <typename ...> typename T, template <typename ...> typename F>
46 struct selector
47 {
49  template <typename ...args_t>
50  struct select : public std::conditional_t<B, T<args_t...>, F<args_t...>>
51  {};
52 };
53 
57 template <std::ranges::viewable_range database_t,
58  std::ranges::viewable_range query_t,
59  typename align_config_t,
60  typename is_semi_global_t,
61  typename word_t = uint_fast64_t>
62 struct default_edit_distance_trait_type
63 {
65  using align_config_type = std::remove_reference_t<align_config_t>;
67  using alignment_traits_type = alignment_configuration_traits<align_config_type>;
69  using word_type = word_t;
70  static_assert(std::is_unsigned_v<word_type>, "the word type of edit_distance_unbanded must be unsigned.");
71  static_assert(alignment_traits_type::has_output_configuration, "We assume the result type was configured.");
73  using score_type = typename alignment_traits_type::original_score_type;
75  using database_type = std::remove_reference_t<database_t>;
77  using query_type = std::remove_reference_t<query_t>;
78 
80  static constexpr uint8_t word_size = sizeof_bits<word_type>;
81  static_assert(sizeof_bits<word_type> <= 64u, "we assume at most uint64_t as word_type");
82 
84  using database_iterator = std::ranges::iterator_t<database_type>;
88  using alignment_result_type = typename alignment_traits_type::alignment_result_type;
90  using result_value_type = typename alignment_result_value_type_accessor<alignment_result_type>::type;
91 
94  static constexpr bool use_max_errors = align_config_type::template exists<align_cfg::min_score>();
96  static constexpr bool is_semi_global = is_semi_global_t::value;
98  static constexpr bool is_global = !is_semi_global;
100  static constexpr bool compute_score = true;
102  static constexpr bool compute_sequence_alignment = alignment_traits_type::compute_sequence_alignment;
104  static constexpr bool compute_begin_positions = alignment_traits_type::compute_begin_positions ||
105  compute_sequence_alignment;
107  static constexpr bool compute_end_positions = alignment_traits_type::compute_end_positions ||
108  compute_begin_positions;
110  static constexpr bool compute_score_matrix = false;
112  static constexpr bool compute_trace_matrix = compute_begin_positions || compute_sequence_alignment;
114  static constexpr bool compute_matrix = compute_score_matrix || compute_trace_matrix;
115 
117  using trace_matrix_type = edit_distance_trace_matrix_full<word_type, is_semi_global, use_max_errors>;
119  using score_matrix_type = edit_distance_score_matrix_full<word_type, score_type, is_semi_global, use_max_errors>;
120 };
121 
123 template <bool enable_policy,
124  template <typename ...> typename policy_t,
125  typename edit_traits,
126  typename derived_t>
127 using edit_distance_base =
128  invoke_deferred_crtp_base<deferred_crtp_base<selector<enable_policy, policy_t, empty_state>::template select,
129  edit_traits>,
130  derived_t>;
131 
133 template <std::ranges::viewable_range database_t,
134  std::ranges::viewable_range query_t,
135  typename align_config_t,
136  typename traits_t>
137 class edit_distance_unbanded; //forward declaration
139 
140 } // namespace seqan3::detail
bit_manipulation.hpp
Provides utility functions for bit twiddling.
type_traits.hpp
Provides helper type traits for the configuration and execution of the alignment algorithm.
concepts
The Concepts library.
ranges
Adaptations of concepts from the Ranges TS.
std::remove_reference_t
align_config_min_score.hpp
Provides seqan3::align_cfg::min_score configuration.
platform.hpp
Provides platform and dependency checks.
std::conditional_t
deferred_crtp_base.hpp
Provides seqan3::detail::deferred_crtp_base.
align_result_selector.hpp
Provides seqan3::detail::align_result_selector.