-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathconfig.hpp
66 lines (50 loc) · 1.33 KB
/
config.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
#ifndef CONFIG_HPP
#define CONFIG_HPP
#include <string>
#include <vector>
#include <iostream>
#include "cxxopts.hpp"
#include "bed_utils.hpp"
using namespace std ;
class Configuration {
private:
static Configuration* instance ;
public:
static Configuration* getInstance() ;
void parse(int argc, char* argv[]) ;
int cutoff = 0 ;
int overlap = -1 ;
int threads = 4 ;
int coverage = 50 ;
int batch_size = 1000 ;
int min_sv_length = 25 ;
int min_indel_length = 20 ;
int aggregate_batches = 5 ;
int min_cluster_weight = 2 ;
bool binary = false ;
bool clipped = false ;
bool putative = true ;
bool assemble = false ;
bool aggregate = false ;
bool selective = true ;
std::string bed ;
std::string bam ; // reads bam (reconstructed or not)
std::string sfsbam ; // superstrings bam (from realignment)
std::string vcf ;
std::string type ;
std::string workdir ;
std::string append ;
std::string index ;
std::string fastq ;
std::string fasta ;
std::string target ;
std::string prefix ;
std::string reference ;
private:
Configuration() ;
Configuration(Configuration const&) = delete ;
void operator=(Configuration const&) = delete ;
Configuration& operator[](std::string) ;
cxxopts::Options parser ;
};
#endif