[go: up one dir, main page]

File: combineKmers.hpp

package info (click to toggle)
seer 1.1.4-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 3,644 kB
  • sloc: cpp: 2,944; perl: 596; python: 122; makefile: 87
file content (25 lines) | stat: -rw-r--r-- 653 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/*
 * Header file for combineKmers.cpp
 * Takes union of dsk counted kmers
 *
 */

// C++ stl includes
#include <iostream>
#include <fstream>
#include <vector>
#include <tuple>
#include <unordered_map>
#include <iterator>

// Library includes
#include <boost/program_options.hpp>
#include <gzstream.h>

// Function prototypes
int parseCommandLine (int argc, char *argv[], boost::program_options::variables_map& vm);
void printHelp(boost::program_options::options_description& help);

std::vector<std::tuple<std::string, std::string> > readSamples(const std::string& sample_file);
size_t checkMin(const size_t num_samples, const int input_min_samples);