-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathACF2TREEMIX.h
46 lines (37 loc) · 834 Bytes
/
ACF2TREEMIX.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
46
/*
* ACF2TREEMIX
* Date: Jul-30-2017
* Author : Gabriel Renaud gabriel.reno [at sign here] gmail.com
*
*/
#ifndef ACF2TREEMIX_h
#define ACF2TREEMIX_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 ACF2TREEMIX{
private:
bool noroot = false;
bool limitToTransversions=false;
bool noprivate=false;
bool printAnc=false;
public:
ACF2TREEMIX();
ACF2TREEMIX(const ACF2TREEMIX & other);
~ACF2TREEMIX();
ACF2TREEMIX & operator= (const ACF2TREEMIX & other);
string usage() const;
int run(int argc, char *argv[]);
};
#endif