SeqAn3  3.0.3
The Modern C++ library for sequence analysis.
bi_fm_index.hpp
Go to the documentation of this file.
1 // -----------------------------------------------------------------------------------------------------
2 // Copyright (c) 2006-2021, Knut Reinert & Freie Universität Berlin
3 // Copyright (c) 2016-2021, 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 <seqan3/std/filesystem>
16 #include <seqan3/std/ranges>
17 #include <utility>
18 
22 
23 namespace seqan3
24 {
25 
60 template <semialphabet alphabet_t,
61  text_layout text_layout_mode_,
62  detail::sdsl_index sdsl_index_type_ = default_sdsl_index_type>
64 {
65 private:
70  using sdsl_index_type = sdsl_index_type_;
71 
73  using rev_sdsl_index_type = sdsl::csa_wt<sdsl_wt_index_type::wavelet_tree_type, // Wavelet tree type
74  10'000'000, // Sampling rate of the suffix array
75  10'000'000, // Sampling rate of the inverse suffix array
76  sdsl::sa_order_sa_sampling<>, // Text or SA based sampling for SA
77  sdsl::isa_sampling<>, // Text or ISA based sampling for ISA
78  sdsl_wt_index_type::alphabet_type>; // How to represent the alphabet
79 
83  using sdsl_char_type = typename sdsl_index_type::alphabet_type::char_type;
84 
86  using sdsl_sigma_type = typename sdsl_index_type::alphabet_type::sigma_type;
87 
90 
92  using rev_fm_index_type = detail::reverse_fm_index<alphabet_t, text_layout_mode_, rev_sdsl_index_type>;
94 
96  fm_index_type fwd_fm;
97 
99  rev_fm_index_type rev_fm;
100 
120  template <std::ranges::range text_t>
121  void construct(text_t && text)
122  {
123  detail::fm_index_validator::validate<alphabet_t, text_layout_mode_>(text);
124 
125  fwd_fm = fm_index_type{text};
126  rev_fm = rev_fm_index_type{text};
127  }
128 
129 public:
131  static constexpr text_layout text_layout_mode = text_layout_mode_;
132 
139  using size_type = typename sdsl_index_type::size_type;
141 
149 
151 
152  template <typename bi_fm_index_t>
153  friend class bi_fm_index_cursor;
154 
158  bi_fm_index() = default;
159  bi_fm_index(bi_fm_index const &) = default;
160  bi_fm_index & operator=(bi_fm_index const &) = default;
161  bi_fm_index(bi_fm_index &&) = default;
163  ~bi_fm_index() = default;
164 
173  template <std::ranges::range text_t>
174  bi_fm_index(text_t && text)
175  {
176  construct(std::forward<text_t>(text));
177  }
179 
191  size_type size() const noexcept
192  {
193  return fwd_fm.size();
194  }
195 
207  bool empty() const noexcept
208  {
209  return size() == 0;
210  }
211 
223  bool operator==(bi_fm_index const & rhs) const noexcept
224  {
225  return std::tie(fwd_fm, rev_fm) == std::tie(rhs.fwd_fm, rhs.rev_fm);
226  }
227 
239  bool operator!=(bi_fm_index const & rhs) const noexcept
240  {
241  return !(*this == rhs);
242  }
243 
258  cursor_type cursor() const noexcept
259  {
260  return {*this};
261  }
262 
275  fwd_cursor_type fwd_cursor() const noexcept
276  {
277  return {fwd_fm};
278  }
279 
287  template <cereal_archive archive_t>
288  void CEREAL_SERIALIZE_FUNCTION_NAME(archive_t & archive)
289  {
290  archive(fwd_fm);
291  archive(rev_fm);
292  }
294 };
295 
300 template <std::ranges::range text_t>
301 bi_fm_index(text_t &&) -> bi_fm_index<range_innermost_value_t<text_t>, text_layout{range_dimension_v<text_t> != 1}>;
303 
305 
306 } // namespace seqan3
Provides the seqan3::bi_fm_index_cursor for searching in the bidirectional seqan3::bi_fm_index.
The SeqAn Bidirectional FM Index Cursor.
Definition: bi_fm_index_cursor.hpp:58
The SeqAn Bidirectional FM Index.
Definition: bi_fm_index.hpp:64
bi_fm_index(text_t &&text)
Constructor that immediately constructs the index given a range. The range cannot be empty.
Definition: bi_fm_index.hpp:174
bi_fm_index & operator=(bi_fm_index const &)=default
Defaulted.
bi_fm_index(bi_fm_index &&)=default
Defaulted.
bi_fm_index()=default
Defaulted.
fwd_cursor_type fwd_cursor() const noexcept
Returns a unidirectional seqan3::fm_index_cursor on the original text of the bidirectional index that...
Definition: bi_fm_index.hpp:275
bool operator==(bi_fm_index const &rhs) const noexcept
Compares two indices.
Definition: bi_fm_index.hpp:223
bool operator!=(bi_fm_index const &rhs) const noexcept
Compares two indices.
Definition: bi_fm_index.hpp:239
static constexpr text_layout text_layout_mode
Indicates whether index is built over a collection.
Definition: bi_fm_index.hpp:131
cursor_type cursor() const noexcept
Returns a seqan3::bi_fm_index_cursor on the index that can be used for searching.
Definition: bi_fm_index.hpp:258
typename sdsl_index_type::size_type size_type
Type for representing positions in the indexed text.
Definition: bi_fm_index.hpp:139
bi_fm_index & operator=(bi_fm_index &&)=default
Defaulted.
bool empty() const noexcept
Checks whether the index is empty.
Definition: bi_fm_index.hpp:207
bi_fm_index(bi_fm_index const &)=default
Defaulted.
typename fm_index_type::alphabet_type alphabet_type
The type of the underlying character of the indexed text.
Definition: bi_fm_index.hpp:137
size_type size() const noexcept
Returns the length of the indexed text including sentinel characters.
Definition: bi_fm_index.hpp:191
~bi_fm_index()=default
Defaulted.
The SeqAn FM Index Cursor.
Definition: fm_index_cursor.hpp:90
size_type size() const noexcept
Returns the length of the indexed text including sentinel characters.
Definition: fm_index.hpp:460
alphabet_t alphabet_type
The type of the underlying character of the indexed text.
Definition: fm_index.hpp:380
Provides various transformation traits used by the range module.
This header includes C++17 filesystem support and imports it into namespace std::filesystem (independ...
Provides the unidirectional seqan3::fm_index.
text_layout
The possible text layouts (single, collection) the seqan3::fm_index and seqan3::bi_fm_index can suppo...
Definition: concept.hpp:81
sdsl_wt_index_type default_sdsl_index_type
The default FM Index Configuration.
Definition: fm_index.hpp:150
bi_fm_index(text_t &&) -> bi_fm_index< range_innermost_value_t< text_t >, text_layout
Deduces the dimensions of the text.
Definition: bi_fm_index.hpp:301
The basis for seqan3::alphabet, but requires only rank interface (not char).
The main SeqAn3 namespace.
Definition: aligned_sequence_concept.hpp:29
Adaptations of concepts from the Ranges TS.
T tie(T... args)