14#include <seqan3/alphabet/nucleotide/dna4.hpp>
15#include <seqan3/search/views/kmer_hash.hpp>
20namespace raptor::threshold
79 size_t const text_length = text.
size();
83 uint64_t
const max_number_of_minimiser = text_length -
window_size + 1u;
90 auto apply_xor = [
this](uint64_t
const value)
94 auto kmer_view = text | seqan3::views::kmer_hash(
shape) | std::views::transform(apply_xor);
102 constexpr auto operator<=>(kmer
const & other)
const =
default;
109 for (uint64_t i = 0; i < kmers_per_window; ++i)
110 window_hashes.
emplace_back(kmer{.hash = forward_hashes[i], .position = i});
118 for (uint64_t i = kmers_per_window; i < max_number_of_minimiser; ++i)
120 uint64_t
const new_hash{
forward_hashes[i + kmers_per_window - 1]};
123 bool const minimiser_leaves_window = window_hashes.
front() ==
min;
124 bool const new_hash_is_min = new_hash <
min.hash;
128 window_hashes.
emplace_back(kmer{.hash = new_hash, .position = i});
131 if (new_hash_is_min || minimiser_leaves_window)
Provides raptor::adjust_seed.
T emplace_back(T... args)
Definition forward_strand_minimiser.hpp:25
uint64_t window_size
The window size of the minimiser.
Definition forward_strand_minimiser.hpp:28
forward_strand_minimiser(window const window_size_, seqan3::shape const shape_)
Constructs a minimiser from given k-mer, window size and a seed.
Definition forward_strand_minimiser.hpp:53
std::vector< uint64_t > forward_hashes
Stores the k-mer hashes of the forward strand.
Definition forward_strand_minimiser.hpp:36
forward_strand_minimiser(forward_strand_minimiser &&)=default
Defaulted.
forward_strand_minimiser & operator=(forward_strand_minimiser const &)=default
Defaulted.
uint64_t seed
Random but fixed value to xor k-mers with. Counteracts consecutive minimisers.
Definition forward_strand_minimiser.hpp:34
forward_strand_minimiser & operator=(forward_strand_minimiser &&)=default
Defaulted.
forward_strand_minimiser()=default
Defaulted.
void resize(window const window_size_, seqan3::shape const shape_)
Resize the minimiser.
Definition forward_strand_minimiser.hpp:66
uint8_t shape_size
The size of the shape.
Definition forward_strand_minimiser.hpp:32
~forward_strand_minimiser()=default
Defaulted.
std::vector< uint64_t > minimiser_begin
Stores the begin positions of the minimisers.
Definition forward_strand_minimiser.hpp:40
seqan3::shape shape
The shape to use.
Definition forward_strand_minimiser.hpp:30
forward_strand_minimiser(forward_strand_minimiser const &)=default
Defaulted.
Strong type for passing the window size.
Definition strong_types.hpp:19