HIBF 1.0.0-rc.1
All Classes Namespaces Files Functions Variables Typedefs Friends Macros Modules Pages Concepts
compute_relaxed_fpr_correction.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 <cstddef> // for size_t
8
9#include <hibf/platform.hpp>
10
11namespace seqan::hibf::layout
12{
13
19{
20 double fpr{};
21 double relaxed_fpr{};
22 size_t hash_count{};
23};
24
29
30} // namespace seqan::hibf::layout
double compute_relaxed_fpr_correction(relaxed_fpr_correction_parameters const &params)
Precompute size correction factor for merged bins which are allowed to have a relaxed FPR.
Provides platform and dependency checks.
Contains parameters for compute_relaxed_fpr_correction.
Definition compute_relaxed_fpr_correction.hpp:19