-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathACF2NEXUS.h
More file actions
44 lines (35 loc) · 758 Bytes
/
ACF2NEXUS.h
File metadata and controls
44 lines (35 loc) · 758 Bytes
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
/*
* ACF2NEXUS
* Date: Jul-30-2017
* Author : Gabriel Renaud gabriel.reno [at sign here] gmail.com
*
*/
#ifndef ACF2NEXUS_h
#define ACF2NEXUS_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 ACF2NEXUS{
private:
bool printOnlySeq =false;
bool allDefined=false;
public:
ACF2NEXUS();
ACF2NEXUS(const ACF2NEXUS & other);
~ACF2NEXUS();
ACF2NEXUS & operator= (const ACF2NEXUS & other);
string usage() const;
int run(int argc, char *argv[]);
};
#endif