forked from pkrusche/vt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.cpp
136 lines (115 loc) · 5.86 KB
/
config.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
/* The MIT License
Copyright (c) 2014 Adrian Tan <[email protected]>
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
*/
#include "config.h"
namespace
{
class Igor : Program
{
public:
///////////
//options//
///////////
std::string resource_bundle_dir;
Igor(int argc, char **argv)
{
version = "0.5";
//////////////////////////
//options initialization//
//////////////////////////
try
{
std::string desc = "configures the reference list in the vt bundle directory";
TCLAP::CmdLine cmd(desc, ' ', version);
VTOutput my; cmd.setOutput(&my);
TCLAP::ValueArg<std::string> arg_resource_bundle_dir("r", "r", "resource bundle directory []", true, "", "str", cmd);
cmd.parse(argc, argv);
resource_bundle_dir = arg_resource_bundle_dir.getValue();
}
catch (TCLAP::ArgException &e)
{
std::cerr << "error: " << e.error() << " for arg " << e.argId() << "\n";
abort();
}
};
void initialize()
{
}
void config()
{
///////
//SNP//
///////
std::string output_reference_file = (resource_bundle_dir == "") ? + "snp.reference.txt" : (resource_bundle_dir + "/snp.reference.txt");
htsFile *file = hts_open(output_reference_file.c_str(), "w");
std::string hdr = "# This file contains information on how to process reference data sets.\n"
"# dataset - name of data set, this label will be printed.\n"
"# type - True Positives (TP) and False Positives (FP).\n"
"# overlap percentages labeled as (Precision, Sensitivity) and (False Discovery Rate, Type I Error) respectively.\n"
"# - annotation.\n"
"# file is used for GENCODE annotation of frame shift and non frame shift Indels.\n"
"# filter - filter applied to variants for this particular data set.\n"
"# path - path of indexed BCF file.\n";
size_t ret = hwrite(file->fp.hfile, hdr.c_str(), hdr.size());
std::string dataset = "#dataset type filter path\n"
"1000g TP N_ALLELE==2&&VTYPE==INDEL " + resource_bundle_dir + "1000G.snps_indels.sites.bcf\n"
"mills TP N_ALLELE==2&&VTYPE==INDEL " + resource_bundle_dir + "mills.208620indels.sites.bcf\n"
"dbsnp TP N_ALLELE==2&&VTYPE==INDEL " + resource_bundle_dir + "dbsnp.13147541variants.sites.bcf\n"
"GENCODE_V19 cds_annotation . " + resource_bundle_dir + "gencode.cds.bed.gz\n"
"DUST cplx_annotation . " + resource_bundle_dir + "mdust.bed.gz\n";
ret = hwrite(file->fp.hfile, dataset.c_str(), dataset.size());
hts_close(file);
std::clog << "wrote to " << output_reference_file << "\n";
/////////
//INDEL//
/////////
output_reference_file = (resource_bundle_dir == "") ? + "indel.reference.txt" : (resource_bundle_dir + "/indel.reference.txt");
file = hts_open(output_reference_file.c_str(), "w");
ret = hwrite(file->fp.hfile, hdr.c_str(), hdr.size());
dataset = "#dataset type filter path\n"
"1000g TP N_ALLELE==2&&VTYPE==INDEL " + resource_bundle_dir + "1000G.snps_indels.sites.bcf\n"
"mills TP N_ALLELE==2&&VTYPE==INDEL " + resource_bundle_dir + "mills.208620indels.sites.bcf\n"
"dbsnp TP N_ALLELE==2&&VTYPE==INDEL " + resource_bundle_dir + "dbsnp.13147541variants.sites.bcf\n"
"GENCODE_V19 cds_annotation . " + resource_bundle_dir + "gencode.cds.bed.gz\n"
"DUST cplx_annotation . " + resource_bundle_dir + "mdust.bed.gz\n";
ret = hwrite(file->fp.hfile, dataset.c_str(), dataset.size());
hts_close(file);
std::clog << "wrote to " << output_reference_file << "\n";
};
void print_options()
{
std::clog << "config v" << version << "\n";
std::clog << "\n";
std::clog << "options: [r] resource bundle directory " << resource_bundle_dir << "\n";
std::clog << "\n";
}
void print_stats()
{
};
~Igor() {};
private:
};
}
void config(int argc, char ** argv)
{
Igor igor(argc, argv);
igor.print_options();
igor.initialize();
igor.config();
igor.print_stats();
};