Raptor
A fast and space-efficient pre-filter
All Classes Namespaces Files Functions Variables Macros Pages Concepts
build_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
19namespace raptor
20{
21
23{
24 // Related to k-mers
25 uint8_t kmer_size{20u};
26 uint32_t window_size{kmer_size};
27 std::string shape_string{};
28 seqan3::shape shape{seqan3::ungapped{kmer_size}};
29
30 // Related to IBF
31 std::filesystem::path out_path{};
32 uint64_t bins{64};
33 mutable uint64_t bits{4096}; // Allow to change bits for each partition
34 uint64_t hash{2};
35 uint8_t parts{1u};
36 double fpr{0.05};
37
38 // General arguments
40 std::filesystem::path bin_file{};
41 uint8_t threads{1u};
42 bool is_hibf{false};
43 bool input_is_minimiser{false};
44 bool quiet{false};
45 std::filesystem::path timing_out{};
46
47 // Timers do not copy the stored duration upon copy construction/assignment
48 mutable seqan::hibf::concurrent_timer wall_clock_timer{};
49 mutable seqan::hibf::concurrent_timer bin_size_timer{};
50 mutable seqan::hibf::concurrent_timer index_allocation_timer{};
51 mutable seqan::hibf::concurrent_timer user_bin_io_timer{};
52 mutable seqan::hibf::concurrent_timer merge_kmers_timer{};
53 mutable seqan::hibf::concurrent_timer fill_ibf_timer{};
54 mutable seqan::hibf::concurrent_timer store_index_timer{};
55
56 void print_timings() const;
57 void write_timings_to_file() const;
58};
59
60} // namespace raptor
Definition build_arguments.hpp:23
Hide me