Chopper
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
sketch_file.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 <vector>
11
12#include <cereal/types/vector.hpp>
13
15
16#include <hibf/sketch/hyperloglog.hpp>
17#include <hibf/sketch/minhashes.hpp>
18
19namespace chopper::sketch
20{
21
23{
25 std::vector<std::vector<std::string>> filenames{};
26 std::vector<seqan::hibf::sketch::hyperloglog> hll_sketches{};
27 std::vector<seqan::hibf::sketch::minhashes> minHash_sketches{};
28
29private:
30 friend class cereal::access;
31
32 template <typename archive_t>
33 void serialize(archive_t & archive)
34 {
35 uint32_t version{1};
36 archive(CEREAL_NVP(version));
37
38 archive(CEREAL_NVP(chopper_config));
39 archive(CEREAL_NVP(filenames));
40 archive(CEREAL_NVP(hll_sketches));
41 archive(CEREAL_NVP(minHash_sketches));
42 }
43};
44
45} // namespace chopper::sketch
Definition: check_filenames.hpp:16
Definition: configuration.hpp:24
Definition: sketch_file.hpp:23
chopper::configuration chopper_config
Definition: sketch_file.hpp:24
std::vector< seqan::hibf::sketch::minhashes > minHash_sketches
Definition: sketch_file.hpp:27
std::vector< seqan::hibf::sketch::hyperloglog > hll_sketches
Definition: sketch_file.hpp:26
void serialize(archive_t &archive)
Definition: sketch_file.hpp:33
std::vector< std::vector< std::string > > filenames
Definition: sketch_file.hpp:25
friend class cereal::access
Definition: sketch_file.hpp:30