Chopper
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
input.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 <iosfwd>
11#include <string>
12#include <tuple>
13#include <vector>
14
16
17#include <hibf/layout/layout.hpp>
18
19namespace chopper::layout
20{
21
22std::vector<std::vector<std::string>> read_filenames_from(std::istream & stream);
23std::tuple<std::vector<std::vector<std::string>>, configuration, seqan::hibf::layout::layout>
24read_layout_file(std::istream & stream);
25
26} // namespace chopper::layout
Definition: determine_best_number_of_technical_bins.hpp:17
std::tuple< std::vector< std::vector< std::string > >, configuration, seqan::hibf::layout::layout > read_layout_file(std::istream &stream)
Definition: input.cpp:70
std::vector< std::vector< std::string > > read_filenames_from(std::istream &stream)
Definition: input.cpp:27