72 template <std::ranges::range urng_t>
78 static_assert(std::ranges::viewable_range<urng_t>,
79 "The range parameter to views::minimiser_hash cannot be a temporary of a non-view range.");
80 static_assert(std::ranges::forward_range<urng_t>,
81 "The range parameter to views::minimiser_hash must model std::ranges::forward_range.");
83 "The range parameter to views::minimiser_hash must be over elements of seqan3::semialphabet.");
89 | std::views::transform(
97 | std::views::transform(
100 return i ^ seed.get();
102 | std::views::reverse;
Template for range adaptor closure objects that store arguments and wrap a proto-adaptor.
Definition adaptor_from_functor.hpp:54
The type returned by seqan3::views::minimiser.
Definition minimiser.hpp:47
CRTP base class to declare a strong typedef for a regular type to avoid ambiguous parameter settings ...
Definition strong_type.hpp:171
constexpr value_t & get() &noexcept
Returns the underlying value.
Definition strong_type.hpp:198
constexpr strong_type() noexcept=default
Defaulted.
constexpr size_type size() const noexcept
Returns the number of elements in the container, i.e. std::distance(begin(), end()).
Definition dynamic_bitset.hpp:1231
A class that defines which positions of a pattern to hash.
Definition shape.hpp:57
Provides seqan3::views::complement.
constexpr auto minimiser_hash
Computes minimisers for a range with a given shape, window size and seed.
Definition minimiser_hash.hpp:190
auto const complement
A view that converts a range of nucleotides to their complement.
Definition complement.hpp:64
constexpr auto kmer_hash
Computes hash values for each position of a range via a given shape.
Definition kmer_hash.hpp:766
The basis for seqan3::alphabet, but requires only rank interface (not char).
Provides seqan3::views::kmer_hash.
Provides seqan3::views::minimiser.
The internal SeqAn3 namespace.
Definition aligned_sequence_concept.hpp:26
The SeqAn namespace for views.
Definition char_strictly_to.hpp:19
The main SeqAn3 namespace.
Definition aligned_sequence_concept.hpp:26
Provides basic data structure for strong types.
seqan3::views::minimiser_hash's range adaptor object type (non-closure).
Definition minimiser_hash.hpp:39
constexpr auto operator()(shape const &shape, window_size const window_size) const
Store the shape and the window size and return a range adaptor closure object.
Definition minimiser_hash.hpp:46
constexpr auto operator()(shape const &shape, window_size const window_size, seed const seed) const
Store the shape, the window size and the seed and return a range adaptor closure object.
Definition minimiser_hash.hpp:58
constexpr auto operator()(urng_t &&urange, shape const &shape, window_size const window_size, seed const seed=seqan3::seed{0x8F '3F '73 'B5 'CF '1C '9A 'DE}) const
Call the view's constructor with the underlying view, a seqan3::shape and a window size as argument.
Definition minimiser_hash.hpp:73
strong_type for seed.
Definition minimiser_hash.hpp:22
strong_type for the window_size.
Definition minimiser_hash.hpp:29