HIBF
1.0.0-rc.1
Toggle main menu visibility
Main Page
Cookbook
About
Changelog
Copyright
Code of Conduct
Contributing
API Reference
API Reference (details)
Concept List
Class List
Class List
Class Index
Class Hierarchy
Class Members
All
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
v
~
Functions
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
v
~
Variables
a
b
d
e
f
h
i
k
m
n
o
p
r
s
t
u
v
Typedefs
Related Symbols
File List
File List
File Members
All
Macros
▼
HIBF
Cookbook
►
About
►
API Reference
▼
API Reference (details)
►
Concept List
►
Class List
▼
File List
▼
File List
▼
hibf
►
build
►
cereal
►
layout
►
misc
▼
sketch
compute_sketches.hpp
estimate_kmer_counts.hpp
hyperloglog.hpp
►
minhashes.hpp
toolbox.hpp
all.hpp
config.hpp
hierarchical_interleaved_bloom_filter.hpp
►
interleaved_bloom_filter.hpp
►
platform.hpp
►
version.hpp
►
File Members
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Friends
Macros
Modules
Pages
Concepts
Loading...
Searching...
No Matches
compute_sketches.hpp
1
// SPDX-FileCopyrightText: 2006-2025, Knut Reinert & Freie Universität Berlin
2
// SPDX-FileCopyrightText: 2016-2025, Knut Reinert & MPI für molekulare Genetik
3
// SPDX-License-Identifier: BSD-3-Clause
4
5
#pragma once
6
7
#include <
vector
>
// for vector
8
9
#include <hibf/config.hpp>
// for config
10
#include <
hibf/sketch/hyperloglog.hpp
>
// for hyperloglog
11
#include <
hibf/sketch/minhashes.hpp
>
// for minhashes
12
13
namespace
seqan::hibf::sketch
14
{
15
21
void
compute_sketches
(
config
const
&
config
,
std::vector<sketch::hyperloglog>
& hll_sketches);
22
24
void
compute_sketches
(
config
const
&
config
,
25
std::vector<sketch::hyperloglog>
& hll_sketches,
26
std::vector<sketch::minhashes>
& minhash_sketches);
27
28
}
// namespace seqan::hibf::sketch
seqan::hibf::sketch::compute_sketches
void compute_sketches(config const &config, std::vector< sketch::hyperloglog > &hll_sketches)
Computes the kmer_counts and sketches and stores them in the respective vectors for further use.
hyperloglog.hpp
Provides seqan::hibf::sketch::hyperloglog.
minhashes.hpp
Provides seqan::hibf::sketch::minhashes.
seqan::hibf::config
The configuration used to build an (H)IBF.
Definition
config.hpp:75
vector
hibf
sketch
compute_sketches.hpp
Generated on Mon Mar 17 2025 14:41:03 for HIBF by
1.10.0