64 using sdsl_index_type = sdsl_index_type_;
67 using rev_sdsl_index_type =
68 seqan3::contrib::sdsl::csa_wt<sdsl_wt_index_type::wavelet_tree_type,
71 seqan3::contrib::sdsl::sa_order_sa_sampling<>,
72 seqan3::contrib::sdsl::isa_sampling<>,
73 sdsl_wt_index_type::alphabet_type>;
78 using sdsl_char_type =
typename sdsl_index_type::alphabet_type::char_type;
81 using sdsl_sigma_type =
typename sdsl_index_type::alphabet_type::sigma_type;
87 using rev_fm_index_type = detail::reverse_fm_index<alphabet_t, text_layout_mode_, rev_sdsl_index_type>;
94 rev_fm_index_type rev_fm;
115 template <std::ranges::range text_t>
118 detail::fm_index_validator::validate<alphabet_t, text_layout_mode_>(
text);
121 rev_fm = rev_fm_index_type{
text};
147 template <
typename bi_fm_index_t>
168 template <std::ranges::range text_t>
171 construct(std::forward<text_t>(
text));
188 return fwd_fm.
size();
236 return !(*
this ==
rhs);
282 template <cereal_archive archive_t>
295template <std::ranges::range text_t>
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:51
The SeqAn Bidirectional FM Index.
Definition bi_fm_index.hpp:58
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:169
bi_fm_index(bi_fm_index &&)=default
Defaulted.
bi_fm_index & operator=(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:270
bool operator==(bi_fm_index const &rhs) const noexcept
Compares two indices.
Definition bi_fm_index.hpp:218
bool operator!=(bi_fm_index const &rhs) const noexcept
Compares two indices.
Definition bi_fm_index.hpp:234
static constexpr text_layout text_layout_mode
Indicates whether index is built over a collection.
Definition bi_fm_index.hpp:126
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:253
typename sdsl_index_type::size_type size_type
Type for representing positions in the indexed text.
Definition bi_fm_index.hpp:134
bool empty() const noexcept
Checks whether the index is empty.
Definition bi_fm_index.hpp:202
bi_fm_index & operator=(bi_fm_index const &)=default
Defaulted.
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:132
size_type size() const noexcept
Returns the length of the indexed text including sentinel characters.
Definition bi_fm_index.hpp:186
~bi_fm_index()=default
Defaulted.
A "pretty printer" for most SeqAn data structures and related types.
Definition debug_stream_type.hpp:79
size_type size() const noexcept
Returns the length of the indexed text including sentinel characters.
Definition fm_index.hpp:469
alphabet_t alphabet_type
The type of the underlying character of the indexed text.
Definition fm_index.hpp:384
Provides various transformation traits used by the range module.
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 search/fm_index/concept.hpp:69
sdsl_wt_index_type default_sdsl_index_type
The default FM Index Configuration.
Definition fm_index.hpp:141
The basis for seqan3::alphabet, but requires only rank interface (not char).
The main SeqAn3 namespace.
Definition aligned_sequence_concept.hpp:26