@@ -42,6 +42,7 @@ Configuration::Configuration()
42
42
(" min-sv-length" , " " , cxxopts::value<int >())
43
43
(" min-mapq" , " " , cxxopts::value<int >())
44
44
(" min-cluster-weight" , " " , cxxopts::value<int >())
45
+ (" accq" , " " , cxxopts::value<float >())
45
46
(" clipped" , " " , cxxopts::value<bool >()->default_value (" false" ))
46
47
(" noref" , " " , cxxopts::value<bool >()->default_value (" false" ))
47
48
(" noht" , " " , cxxopts::value<bool >()->default_value (" false" ))
@@ -68,7 +69,8 @@ void Configuration::parse(int argc, char **argv) {
68
69
if (results.count (" index" ))
69
70
index = results[" index" ].as <std::string>();
70
71
if (results.count (" fastx" ))
71
- fastq = results[" fastx" ].as <std::string>(); // FIXME: use fastx here and in pingpong
72
+ fastq = results[" fastx" ]
73
+ .as <std::string>(); // FIXME: use fastx here and in pingpong
72
74
if (results.count (" overlap" ))
73
75
overlap = results[" overlap" ].as <int >();
74
76
if (results.count (" bsize" ))
@@ -87,6 +89,8 @@ void Configuration::parse(int argc, char **argv) {
87
89
min_cluster_weight = results[" min-cluster-weight" ].as <int >();
88
90
if (results.count (" min-mapq" ))
89
91
min_mapq = results[" min-mapq" ].as <int >();
92
+ if (results.count (" accq" ))
93
+ accq = results[" accq" ].as <float >();
90
94
if (results.count (" l" ))
91
95
min_ratio = results[" l" ].as <float >();
92
96
binary = results[" binary" ].as <bool >();
0 commit comments