]> git.donarmstrong.com Git - mothur.git/blob - readtreecommand.h
e9424b2be6d534c61dca64195e2272d7782e0aa4
[mothur.git] / readtreecommand.h
1 #ifndef READTREECOMMAND_H
2 #define READTREECOMMAND_H
3
4 /*
5  *  readtreecommand.h
6  *  Mothur
7  *
8  *  Created by Sarah Westcott on 1/23/09.
9  *  Copyright 2009 Schloss Lab UMASS Amherst. All rights reserved.
10  *
11  */
12
13 #include <iostream>
14 #include <fstream>
15 #include "command.hpp"
16 #include "readtree.h"
17 #include "treemap.h"
18
19 class GlobalData;
20
21 class ReadTreeCommand : public Command {
22 public:
23         ReadTreeCommand();
24         ~ReadTreeCommand();
25         int execute();
26         
27 private:
28         GlobalData* globaldata;
29         ReadTree* read;
30         TreeMap* treeMap;
31         string filename;
32 };
33
34
35 #endif