Raptor
A fast and space-efficient pre-filter
All Classes Namespaces Files Functions Variables Macros Pages Concepts
upgrade_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
17namespace raptor
18{
19
21{
22 uint32_t window_size{};
23 seqan3::shape shape{};
24 bool compressed{};
25 bool input_is_minimiser{};
26 uint8_t parts{1u};
27 uint8_t threads{1u};
29
30 std::filesystem::path bin_file{};
31 std::filesystem::path index_file{};
32 std::filesystem::path output_file{};
33
35};
36
37} // namespace raptor
T quiet_NaN(T... args)
Definition upgrade_arguments.hpp:21
Hide me