Skip to content

Commit 28b0832

Browse files
committed
Remove note from readme
1 parent 0495ab7 commit 28b0832

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed

README.md

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -119,13 +119,6 @@ Optional arguments:
119119

120120
Gathers *k*-mer counts ONLY and saves *k*-mers that occur at least `-cmin` times and at most `-cmax` times in a Bloom filter. Optionally, output can be a counting Bloom filter (set `--counts`), which includes the filtered *k*-mers' counts, resulting in a 8x larger output file.
121121

122-
**IMPORTANT:** The counts stored in the output CBF will be exactly one less than the *k*-mers' true counts when using `--count -cmin 2`. In other words, when querying the output CBF:
123-
124-
```C++
125-
const unsigned cbf_output = cbf.contains(kmer);
126-
const unsigned kmer_count = cbf_output > 0 ? cbf_output + 1 : 0;
127-
```
128-
129122

130123
```
131124
Usage: ntstat filter [--help] [--version] [-k VAR] [-s VAR] -f VAR [-e VAR] [-b VAR] [-cmin VAR] [-cmax VAR] [--counts] [--long] [-t VAR] -o VAR reads

0 commit comments

Comments
 (0)