Chopper
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
shared.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 <cstdint>
11#include <filesystem>
12#include <string>
13#include <vector>
14
15#include <hibf/contrib/robin_hood.hpp>
16#include <hibf/sketch/hyperloglog.hpp>
17
18struct config
19{
20 std::filesystem::path input{};
21 std::filesystem::path output{};
23 uint8_t threads{1u};
24};
25
26void execute_general(config const & cfg);
27void execute_sizes(config const & cfg);
28
29void process_file(std::string const & filename,
30 std::vector<uint64_t> & current_kmers,
31 uint8_t const kmer_size,
32 uint8_t const window_size);
33
34void process_file(std::string const & filename,
35 robin_hood::unordered_set<uint64_t> & current_kmer_set,
36 std::vector<uint64_t> & current_kmers,
37 seqan::hibf::sketch::hyperloglog & sketch,
38 bool const fill_current_kmers,
39 uint8_t const kmer_size,
40 uint8_t const window_size);
void process_file(std::string const &filename, std::vector< uint64_t > &current_kmers, uint8_t const kmer_size, uint8_t const window_size)
Definition: process_file.cpp:100
void execute_general(config const &cfg)
Definition: general.cpp:385
void execute_sizes(config const &cfg)
Definition: sizes.cpp:336
Definition: shared.hpp:19
std::filesystem::path input
Definition: shared.hpp:20
uint8_t threads
Definition: shared.hpp:23
bool output_shared_kmers
Definition: shared.hpp:22
std::filesystem::path output
Definition: shared.hpp:21