-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathGlac2VCF.h
45 lines (36 loc) · 801 Bytes
/
Glac2VCF.h
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
/*
* Glac2VCF
* Date: Apr-10-2019
* Author : Gabriel Renaud gabriel.reno [at sign here] gmail.com
*
*/
#ifndef GLAC2VCF_h
#define GLAC2VCF_h
#include <string>
#include <climits>
#include <fstream>
#include <iostream>
#include <sstream>
#include <string>
#include <vector>
#include "libgab.h"
#include "ReadTabix.h"
#include "GlacWriter.h"
#include "GlacParser.h"
#include "AlleleRecords.h"
#include "GlactoolsOperations.h"
using namespace std;
class Glac2VCF{
private:
bool printRoot = false;
bool printAnc = false;
bool singleAlleleAsHomo = false;
public:
Glac2VCF();
Glac2VCF(const Glac2VCF & other);
~Glac2VCF();
Glac2VCF & operator= (const Glac2VCF & other);
string usage() const;
int run(int argc, char *argv[]);
};
#endif