-
Notifications
You must be signed in to change notification settings - Fork 0
/
load_data_for_complexity.hpp
79 lines (64 loc) · 2.57 KB
/
load_data_for_complexity.hpp
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
/* Copyright (C) 2014 University of Southern California and
* Andrew D. Smith and Timothy Daley
*
* Authors: Andrew D. Smith and Timothy Daley
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef LOAD_DATA_FOR_COMPLEXITY_HPP
#define LOAD_DATA_FOR_COMPLEXITY_HPP
#include <string>
#include <vector>
size_t
load_coverage_counts_MR(const bool VERBOSE,
const std::string input_file_name,
const size_t bin_size,
const size_t max_width,
std::vector<double> &coverage_hist);
size_t
load_coverage_counts_GR(const std::string input_file_name,
const size_t bin_size,
const size_t max_width,
std::vector<double> &coverage_hist);
size_t
load_histogram(const std::string &filename, std::vector<double> &counts_hist);
size_t
load_counts(const std::string &input_file_name, std::vector<double> &counts_hist);
size_t
load_counts_BED_pe(const std::string input_file_name,
std::vector<double> &counts_hist);
size_t
load_counts_BED_se(const std::string input_file_name,
std::vector<double> &counts_hist);
#ifdef HAVE_SAMTOOLS
size_t
load_counts_BAM_pe(const bool VERBOSE,
const std::string &input_file_name,
const size_t MAX_SEGMENT_LENGTH,
const size_t MAX_READS_TO_HOLD,
size_t &n_paired,
size_t &n_mates,
std::vector<double> &counts_hist);
size_t
load_counts_BAM_concordant_pe(const bool VERBOSE,
const std::string &input_file_name,
const size_t MAX_SEGMENT_LENGTH,
const size_t MAX_READ_TO_HOLD,
size_t &n_paired,
std::vector<double> &counts_hist);
size_t
load_counts_BAM_se(const std::string &input_file_name,
std::vector<double> &counts_hist);
#endif // HAVE_SAMTOOLS
#endif