From cb6725af63ce1416a1ac20e9fa604871d921267a Mon Sep 17 00:00:00 2001 From: Simon Gene Gottlieb Date: Tue, 17 May 2022 09:38:43 +0200 Subject: [PATCH] Update include/seqan3/search/views/kmer_hash.hpp Co-authored-by: Svenja Mehringer --- include/seqan3/search/views/kmer_hash.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/seqan3/search/views/kmer_hash.hpp b/include/seqan3/search/views/kmer_hash.hpp index 09ae64311b6..8fdc63eba7a 100644 --- a/include/seqan3/search/views/kmer_hash.hpp +++ b/include/seqan3/search/views/kmer_hash.hpp @@ -774,8 +774,8 @@ namespace seqan3::views * * See the \link views views submodule documentation \endlink for detailed descriptions of the view properties. * - * \attention The Shape is defined from right to left. The mask 0b1101 applied to ACGT will return - * the sequence AGT. + * \attention The Shape is defined from right to left! The mask 0b11111101 applied to "AGAAAATA" is + * interpreted as "A.AAAATA" (and not "AGAAAA.A") and will return the hash value for "AAAAATA". * * ### Example *