Chopper
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
ibf_query_cost.hpp
Go to the documentation of this file.
1// ---------------------------------------------------------------------------------------------------
2// Copyright (c) 2006-2023, Knut Reinert & Freie Universität Berlin
3// Copyright (c) 2016-2023, Knut Reinert & MPI für molekulare Genetik
4// This file may be used, modified and/or redistributed under the terms of the 3-clause BSD-License
5// shipped with this file and also available at: https://github.com/seqan/chopper/blob/main/LICENSE.md
6// ---------------------------------------------------------------------------------------------------
7
8#pragma once
9
10#include <array>
11#include <bit>
12#include <cassert>
13#include <cstddef>
14#include <map>
15
16namespace chopper::layout
17{
18
20{
21public:
22 static inline constexpr const size_t maximum_t_max{65536};
23
24 ibf_query_cost() = default;
25 ibf_query_cost(ibf_query_cost const &) = default;
29 ~ibf_query_cost() = default;
30
31 static double exact(size_t const t_max, double const fpr);
32
33 static double interpolated(size_t const t_max, double const fpr);
34
35private:
47 static inline const std::map<double, std::array<double, 11>> cost_factors{
48 /* FPR, cost factors relative to a 64 IBF */
49 {0.0001, {1.0000, 1.0602, 1.3492, 1.3524, 1.5645, 1.9595, 3.4143, 5.4849, 6.8115, 10.9489, 19.8932}},
50 {0.0005, {1.0000, 1.0534, 1.1068, 1.2821, 1.5151, 1.7112, 3.6442, 4.7700, 6.9978, 12.2086, 22.5374}},
51 {0.0025, {1.0000, 1.0015, 1.0031, 1.0876, 1.4027, 1.6920, 3.3014, 4.8019, 7.6273, 13.5664, 24.1108}},
52 {0.0125, {1.0000, 1.0071, 1.1713, 1.3430, 1.8335, 2.6955, 5.3925, 8.6168, 15.0510, 28.3340, 54.4134}},
53 {0.0500, {1.0000, 1.2241, 1.3336, 1.6827, 2.4608, 3.7554, 7.3573, 12.4689, 23.2699, 45.0874, 86.5339}},
54 {0.0625, {1.0000, 1.1011, 1.2670, 1.5964, 2.4030, 3.6996, 7.1772, 12.4852, 23.3882, 44.7427, 87.8259}},
55 {0.3125, {1.0000, 1.2818, 1.5493, 2.2546, 3.7804, 6.5428, 12.9410, 24.4539, 47.6262, 93.4733, 185.1019}}};
56
57 static std::map<double, std::array<double, 11>>::const_iterator find_closest_fpr(double const fpr);
58
59 static constexpr bool contains(size_t const value)
60 {
61 bool const is_power_of_two{std::has_single_bit(value)};
62 int const trailing_zeros{std::countr_zero(value)};
63 return is_power_of_two && trailing_zeros >= 6 && trailing_zeros <= 16;
64 }
65
66 static constexpr size_t position(size_t const value)
67 {
68 assert(contains(value));
69 return std::countr_zero(value) - 6;
70 }
71};
72
73} // namespace chopper::layout
Definition: ibf_query_cost.hpp:20
ibf_query_cost & operator=(ibf_query_cost const &)=default
ibf_query_cost & operator=(ibf_query_cost &&)=default
static constexpr bool contains(size_t const value)
Definition: ibf_query_cost.hpp:59
static const std::map< double, std::array< double, 11 > > cost_factors
The cost factor to penalize a search in an IBF with more then 64 bins.
Definition: ibf_query_cost.hpp:47
static double interpolated(size_t const t_max, double const fpr)
Definition: ibf_query_cost.cpp:32
static constexpr size_t position(size_t const value)
Definition: ibf_query_cost.hpp:66
static std::map< double, std::array< double, 11 > >::const_iterator find_closest_fpr(double const fpr)
Definition: ibf_query_cost.cpp:62
static constexpr const size_t maximum_t_max
Definition: ibf_query_cost.hpp:22
ibf_query_cost(ibf_query_cost const &)=default
static double exact(size_t const t_max, double const fpr)
Definition: ibf_query_cost.cpp:22
ibf_query_cost(ibf_query_cost &&)=default
Definition: determine_best_number_of_technical_bins.hpp:17