14#include <cereal/cereal.hpp>
16#include <hibf/cereal/path.hpp>
17#include <hibf/config.hpp>
18#include <hibf/misc/timer.hpp>
83 void write_to(std::ostream & stream)
const;
88 template <
typename archive_t>
92 archive(CEREAL_NVP(version));
95 archive(CEREAL_NVP(
debug));
97 archive(CEREAL_NVP(
k));
Definition: adjust_seed.hpp:18
Definition: configuration.hpp:24
std::filesystem::path sketch_directory
The name for the output directory when writing sketches to disk.
Definition: configuration.hpp:54
seqan::hibf::config hibf_config
The HIBF config which will be used to compute the layout within the HIBF lib.
Definition: configuration.hpp:74
uint8_t window_size
The window size to compute minimizers before computing a HyperLogLog sketch from them.
Definition: configuration.hpp:44
std::filesystem::path output_filename
The name of the layout file to write.
Definition: configuration.hpp:35
void write_to(std::ostream &stream) const
Definition: configuration.cpp:46
seqan::hibf::concurrent_timer rearrangement_timer
Definition: configuration.hpp:78
seqan::hibf::concurrent_timer union_estimation_timer
Definition: configuration.hpp:77
seqan::hibf::concurrent_timer compute_sketches_timer
Definition: configuration.hpp:76
bool precomputed_files
Whether the input files are precomputed files (.minimiser) instead of sequence files.
Definition: configuration.hpp:47
uint8_t k
The kmer size to hash the input sequences before computing a HyperLogLog sketch from them.
Definition: configuration.hpp:41
bool determine_best_tmax
Whether the program should determine the best number of IBF bins by doing multiple binning runs.
Definition: configuration.hpp:64
seqan::hibf::concurrent_timer dp_algorithm_timer
Definition: configuration.hpp:79
std::filesystem::path output_timings
If specified, layout timings are written to the specified file.
Definition: configuration.hpp:38
bool force_all_binnings
Whether the programm should compute all binnings up to the given t_max.
Definition: configuration.hpp:67
friend class cereal::access
Definition: configuration.hpp:86
void read_from(std::istream &stream)
Definition: configuration.cpp:21
std::filesystem::path data_file
The input file to chopper. Should contain one file path per line.
Definition: configuration.hpp:29
bool output_verbose_statistics
Whether to print verbose output when computing the statistics when computing the layout.
Definition: configuration.hpp:70
void serialize(archive_t &archive)
Definition: configuration.hpp:89
bool debug
Internal parameter that triggers some verbose debug output.
Definition: configuration.hpp:32
bool disable_sketch_output
Do not write the sketches into a dedicated directory.
Definition: configuration.hpp:57