HIBF 1.0.0-rc.1
All Classes Namespaces Files Functions Variables Typedefs Friends Macros Modules Pages Concepts
compute_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#include <vector> // for vector
9
10#include <hibf/platform.hpp>
11
12namespace seqan::hibf::layout
13{
14
20{
21 double fpr{};
22 size_t hash_count{};
23 size_t t_max{};
24};
25
31
32} // namespace seqan::hibf::layout
std::vector< double > compute_fpr_correction(fpr_correction_parameters const &params)
Precompute f_h factors that adjust the split bin size to prevent FPR inflation due to multiple testin...
Provides platform and dependency checks.
Contains parameters for compute_fpr_correction.
Definition compute_fpr_correction.hpp:20