-
Notifications
You must be signed in to change notification settings - Fork 1
/
expand_chains.cpp
105 lines (96 loc) · 3.21 KB
/
expand_chains.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
/* Copyright (C) 2017 University of Southern California and
* Andrew D. Smith
*
* Authors: Andrew D. Smith
*
* expand_chains: expand chains to intervals. The chains should be
* in available from the UCSC Genome Browser downloads and in a
* directory called liftOver for a particular species. The names
* should look like mm10ToHg19.over.chain.gz. An example can be
* found here:
*
* http://hgdownload.soe.ucsc.edu/goldenPath/mm10/liftOver/mm10ToHg19.over.chain.gz
*
* 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.
*/
#include <string>
#include <iostream>
#include <fstream>
#include <vector>
#include <iostream>
#include <cstdlib>
#include <algorithm>
#include <exception>
#include "smithlab_utils.hpp"
#include "smithlab_os.hpp"
#include "OptionParser.hpp"
#include "GenomicRegion.hpp"
#include "chain_file_utils.hpp"
using std::string;
using std::ios_base;
using std::vector;
using std::cout;
using std::cerr;
using std::endl;
using std::runtime_error;
int
main(int argc, const char **argv) {
try{
bool VERBOSE = false;
/****************** COMMAND LINE OPTIONS ********************/
OptionParser opt_parse(strip_path(argv[0]),
"expand a chain format file",
"<input> <output>");
opt_parse.add_opt("verbose", 'v', "print more information",
false, VERBOSE);
vector<string> leftover_args;
opt_parse.parse(argc, argv, leftover_args);
if (argc == 1 || opt_parse.help_requested()) {
cerr << opt_parse.help_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() != 2) {
cerr << opt_parse.option_missing_message() << endl;
return EXIT_SUCCESS;
}
const string chain_file(leftover_args.front());
const string outfile(leftover_args.back());
/****************** END COMMAND LINE OPTIONS *****************/
std::ofstream of;
if (!outfile.empty()) of.open(outfile.c_str());
std::ostream out(outfile.empty() ? cout.rdbuf() : of.rdbuf());
if (!out)
throw runtime_error("cannot open output file: " + outfile);
chain tmp_chain;
std::ifstream in_chains(chain_file.c_str());
if (!in_chains)
throw runtime_error("cannot open input file: " + chain_file);
while (in_chains >> tmp_chain)
out << tmp_chain;
}
catch (const runtime_error &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;
}