Chopper
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
output.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 <cinttypes>
11#include <iosfwd>
12#include <string>
13#include <utility>
14#include <vector>
15
17
18#include <hibf/sketch/hyperloglog.hpp>
19
20namespace chopper::sketch
21{
22
23void write_count_file_line(std::pair<std::string, std::vector<std::string>> const & cluster,
24 uint64_t const weight,
25 std::ofstream & fout);
26
27void write_sketch_file(std::string const & filename,
28 seqan::hibf::sketch::hyperloglog const & sketch,
29 configuration const & config);
30
31} // namespace chopper::sketch
Definition: check_filenames.hpp:16
void write_count_file_line(std::pair< std::string, std::vector< std::string > > const &cluster, uint64_t const weight, std::ofstream &fout)
Definition: output.cpp:25
void write_sketch_file(std::string const &filename, seqan::hibf::sketch::hyperloglog const &sketch, configuration const &config)
Definition: output.cpp:37
Definition: shared.hpp:19