SeqAn3  3.0.2
The Modern C++ library for sequence analysis.
find_optimum_policy.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 
15 #include <type_traits>
16 
20 
21 namespace seqan3::detail
22 {
23 
34 template <typename alignment_algorithm_t>
35 class find_optimum_policy
36 {
37 private:
39  friend alignment_algorithm_t;
40 
42  bool test_every_cell{false};
44  bool test_last_row_cell{false};
46  bool test_last_column_cell{false};
47 
51  constexpr find_optimum_policy() = default;
52  constexpr find_optimum_policy(find_optimum_policy const &) = default;
53  constexpr find_optimum_policy(find_optimum_policy &&) = default;
54  constexpr find_optimum_policy & operator=(find_optimum_policy const &) = default;
55  constexpr find_optimum_policy & operator=(find_optimum_policy &&) = default;
56  ~find_optimum_policy() = default;
57 
59  template <typename configuration_t>
60  find_optimum_policy(configuration_t const & config)
61  {
62  if constexpr (configuration_t::template exists<align_cfg::method_local>())
63  test_every_cell = true;
64 
65  auto method_global_config = config.get_or(align_cfg::method_global{});
66  test_last_row_cell = method_global_config.free_end_gaps_sequence1_trailing;
67  test_last_column_cell = method_global_config.free_end_gaps_sequence2_trailing;
68  }
70 
71 protected:
83  template <typename cell_t, typename score_t>
84  constexpr void check_score_of_cell([[maybe_unused]] cell_t const & current_cell,
85  [[maybe_unused]] alignment_algorithm_state<score_t> & state) const noexcept
86  {
87  if (test_every_cell)
88  check_and_update(current_cell, state);
89  }
90 
92  template <typename other_alignment_algorithm_t, typename score_t, typename is_local_t>
93  friend class affine_gap_policy;
94 
95  template <typename other_alignment_algorithm_t, simd_concept score_t, typename is_local_t>
96  friend class simd_affine_gap_policy;
97 
99  template <typename other_alignment_algorithm_t>
100  friend class affine_gap_init_policy;
101 
114  template <typename cell_t, typename score_t>
115  constexpr void check_score_of_last_row_cell([[maybe_unused]] cell_t const & last_row_cell,
116  [[maybe_unused]] alignment_algorithm_state<score_t> & state) const
117  noexcept
118  {
119  // Only search in last row if requested and not done already.
120  if (!test_every_cell && test_last_row_cell)
121  check_and_update(last_row_cell, state);
122  }
123 
136  template <typename alignment_column_t, typename score_t>
137  constexpr void check_score_of_cells_in_last_column([[maybe_unused]] alignment_column_t && last_column,
138  [[maybe_unused]] alignment_algorithm_state<score_t> & state)
139  const noexcept
140  {
141  // Only check last cell if not done before.
142  if (!test_every_cell && test_last_column_cell)
143  for (auto && cell : last_column)
144  check_and_update(cell, state);
145  }
146 
159  template <typename cell_t, typename score_t>
160  constexpr void check_score_of_last_cell([[maybe_unused]] cell_t const & last_cell,
161  [[maybe_unused]] alignment_algorithm_state<score_t> & state) const noexcept
162  {
163  // Only check last cell if not done before.
164  if (!(test_every_cell || test_last_row_cell || test_last_column_cell))
165  check_and_update(last_cell, state);
166  }
167 
176  template <typename cell_t, typename score_t>
177  constexpr void check_and_update(cell_t const & cell, alignment_algorithm_state<score_t> & state) const noexcept
178  {
179  auto const & [score_cell, trace_cell] = cell;
180  state.optimum.update_if_new_optimal_score(score_cell.current,
181  column_index_type{trace_cell.coordinate.first},
182  row_index_type{trace_cell.coordinate.second});
183  }
184 };
185 
186 } // namespace seqan3::detail
align_config_method.hpp
Provides global and local alignment configurations.
alignment_optimum.hpp
Provides seqan3::detail::alignment_optimum.
alignment_algorithm_state.hpp
Provides seqan3::detail::alignment_algorithm_state.