-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathACF2EIGENSTRAT.h
47 lines (38 loc) · 898 Bytes
/
ACF2EIGENSTRAT.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
47
/*
* Acf2eigenstrat
* Date: Jul-30-2017
* Author : Gabriel Renaud gabriel.reno [at sign here] gmail.com
*
*/
#ifndef ACF2EIGENSTRAT_h
#define ACF2EIGENSTRAT_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 ACF2EIGENSTRAT{
private:
bool printRoot=false;
bool printAnc =false;
bool limitToTransversions =false;
bool singleAlHomo=false;
bool haploidRoot=false;
public:
ACF2EIGENSTRAT();
ACF2EIGENSTRAT(const ACF2EIGENSTRAT & other);
~ACF2EIGENSTRAT();
ACF2EIGENSTRAT & operator= (const ACF2EIGENSTRAT & other);
string usage() const;
int run(int argc, char *argv[]);
};
#endif