Raptor
A fast and space-efficient pre-filter
All Classes Namespaces Files Functions Variables Macros Pages Concepts
prepare_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
21
22namespace raptor
23{
24
26{
27 uint8_t kmer_size{20u};
28 uint32_t window_size{kmer_size};
29 std::string shape_string{};
30 seqan3::shape shape{seqan3::ungapped{kmer_size}};
31 bool use_filesize_dependent_cutoff{false};
32 uint8_t kmer_count_cutoff{1u};
33
34 std::filesystem::path out_dir{"./"};
35
37 std::filesystem::path bin_file{};
38 uint8_t threads{1u};
39 bool quiet{false};
40
41 // Timers do not copy the stored duration upon copy construction/assignment
42 mutable seqan::hibf::concurrent_timer wall_clock_timer{};
43 mutable seqan::hibf::concurrent_timer compute_minimiser_timer{};
44 mutable seqan::hibf::concurrent_timer write_minimiser_timer{};
45 mutable seqan::hibf::concurrent_timer write_header_timer{};
46
47 void print_timings() const
48 {
49 if (quiet)
50 return;
51 std::cerr << std::fixed << std::setprecision(2) << "============= Timings =============\n";
52 std::cerr << "Wall clock time [s]: " << wall_clock_timer.in_seconds() << '\n';
53 std::cerr << "Peak memory usage " << formatted_peak_ram() << '\n';
54 std::cerr << "Compute minimiser [s]: " << compute_minimiser_timer.in_seconds() / threads << '\n';
55 std::cerr << "Write minimiser files [s]: " << write_minimiser_timer.in_seconds() / threads << '\n';
56 std::cerr << "Write header files [s]: " << write_header_timer.in_seconds() / threads << '\n';
57 }
58};
59
60} // namespace raptor
T fixed(T... args)
Provides raptor::formatted_peak_ram.
T setprecision(T... args)
Provides raptor::window.
Definition prepare_arguments.hpp:26
Hide me