Raptor
A fast and space-efficient pre-filter
All Classes Namespaces Files Functions Variables Macros Pages Concepts
search_arguments.hpp
Go to the documentation of this file.
1// SPDX-FileCopyrightText: 2006-2024 Knut Reinert & Freie Universität Berlin
2// SPDX-FileCopyrightText: 2016-2024 Knut Reinert & MPI für molekulare Genetik
3// SPDX-License-Identifier: BSD-3-Clause
4
10#pragma once
11
12#include <filesystem>
13#include <vector>
14
15#include <seqan3/search/kmer_index/shape.hpp>
16
17#include <hibf/misc/timer.hpp>
18
22
23namespace raptor
24{
25
27{
28 // Related to k-mers
29 uint32_t window_size{20u};
30 seqan3::shape shape{seqan3::ungapped{20u}};
31 uint8_t shape_size{shape.size()};
32 uint8_t shape_weight{shape.count()};
33 uint8_t threads{1u};
34 uint8_t parts{1u};
35
36 // Related to thresholding
37 double tau{0.9999};
39 double p_max{0.15};
40 double fpr{0.05};
41 uint64_t query_length{};
42 uint8_t errors{0};
43
44 // Related to IBF
45 std::filesystem::path index_file{};
46
47 // General arguments
49 std::filesystem::path query_file{};
50 std::filesystem::path out_file{"search.out"};
51 bool write_time{false};
52 bool is_hibf{false};
53 bool cache_thresholds{false};
54 bool quiet{false};
55 std::filesystem::path timing_out{};
56
57 // Timers do not copy the stored duration upon copy construction/assignment
58 mutable seqan::hibf::concurrent_timer wall_clock_timer{};
59 mutable seqan::hibf::concurrent_timer query_length_timer{};
60 mutable seqan::hibf::concurrent_timer query_file_io_timer{};
61 mutable seqan::hibf::concurrent_timer load_index_timer{};
62 mutable seqan::hibf::concurrent_timer compute_minimiser_timer{};
63 mutable seqan::hibf::concurrent_timer query_ibf_timer{};
64 mutable seqan::hibf::concurrent_timer generate_results_timer{};
65 mutable seqan::hibf::concurrent_timer complete_search_timer{};
66 mutable seqan::hibf::concurrent_timer parallel_search_timer{};
67
68 void print_timings() const;
69 void write_timings_to_file() const;
70
71 raptor::threshold::threshold_parameters make_threshold_parameters() const noexcept
72 {
73 return {.window_size = window_size,
74 .shape = shape,
75 .query_length = query_length,
76 .errors = errors,
77 .percentage = threshold,
78 .p_max = p_max,
79 .tau = tau,
80 .cache_thresholds = cache_thresholds,
81 .output_directory = index_file.parent_path()};
82 }
83};
84
85} // namespace raptor
Provides raptor::formatted_index_size.
Provides raptor::formatted_peak_ram.
T parent_path(T... args)
T quiet_NaN(T... args)
Definition search_arguments.hpp:27
Definition threshold_parameters.hpp:20
Provides raptor::threshold::threshold_parameters.
Hide me