-
Notifications
You must be signed in to change notification settings - Fork 0
/
subsample-epireads.cpp
150 lines (127 loc) · 4.22 KB
/
subsample-epireads.cpp
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
/* subsample_epireads:
*
* Copyright (C) 2013 University of Southern California and
* Egor Dolzhenko
* Andrew D. Smith
*
* Authors: Andrew D. Smith & Egor Dolzhenko
*
* 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/>.
*/
#include <string>
#include <vector>
#include <iostream>
#include <iterator>
#include <fstream>
#include <algorithm>
#include <numeric>
#include <utility>
#include "OptionParser.hpp"
#include "smithlab_utils.hpp"
#include "smithlab_os.hpp"
#include "RNG.hpp"
using std::string;
using std::vector;
using std::cout;
using std::cerr;
using std::endl;
using std::istringstream;
// Count the number of line in a file.
size_t
count_lines(const string& file) {
std::ifstream in(file.c_str());
if (!in)
throw SMITHLABException("cannot open input file: " + file);
string dummy_line;
size_t num_lines = 0;
while (getline(in, dummy_line))
++num_lines;
return num_lines;
}
int
main(int argc, const char **argv) {
try {
bool VERBOSE = false;
string outfile;
string leftover_file;
size_t sample_size = 0;
/****************** COMMAND LINE OPTIONS ********************/
OptionParser opt_parse(strip_path(argv[0]), "", " <epireads>");
opt_parse.add_opt("sample", 'n', "sample size", true, sample_size);
opt_parse.add_opt("output", 'o', "output file name (default: stdout)",
false, outfile);
opt_parse.add_opt("verbose", 'v', "print more run info", false, VERBOSE);
opt_parse.add_opt("leftover", 'l', "file name for leftover", false,
leftover_file);
vector<string> leftover_args;
opt_parse.parse(argc, argv, leftover_args);
if (argc == 1 || opt_parse.help_requested()) {
cerr << opt_parse.help_message() << endl
<< opt_parse.about_message() << endl;
return EXIT_SUCCESS;
}
if (opt_parse.about_requested()) {
cerr << opt_parse.about_message() << endl;
return EXIT_SUCCESS;
}
if (opt_parse.option_missing()) {
cerr << opt_parse.option_missing_message() << endl;
return EXIT_SUCCESS;
}
if (leftover_args.size() != 1) {
cerr << opt_parse.help_message() << endl;
return EXIT_SUCCESS;
}
const string epi_file(leftover_args.back());
/****************** END COMMAND LINE OPTIONS *****************/
size_t total_epireads = count_lines(epi_file);
if (VERBOSE)
cerr << "There are " << total_epireads << " epireads." << std::endl;
vector<size_t> idx(total_epireads);
for (size_t i = 0; i < total_epireads; ++i)
idx[i] = i;
srand(time(0));
random_shuffle(idx.begin(), idx.end());
idx.erase(idx.begin() + sample_size, idx.end());
sort(idx.begin(), idx.end(), std::greater<int>());
std::ofstream of;
if (!outfile.empty()) of.open(outfile.c_str());
std::ostream out(outfile.empty() ? cout.rdbuf() : of.rdbuf());
std::ofstream out_leftover;
if (!leftover_file.empty()) out_leftover.open(leftover_file.c_str());
std::ifstream in(epi_file.c_str());
if (!in)
throw SMITHLABException("cannot open input file: " + epi_file);
string line;
size_t index = 0;
while (getline(in, line)) {
if (index == idx.back()) {
out << line << endl;
idx.pop_back();
} else if (!leftover_file.empty()) {
out_leftover << line << endl;
}
++index;
}
}
catch (const SMITHLABException &e) {
cerr << e.what() << endl;
return EXIT_FAILURE;
}
catch (std::bad_alloc &ba) {
cerr << "ERROR: could not allocate memory" << endl;
return EXIT_FAILURE;
}
return EXIT_SUCCESS;
}