]> git.donarmstrong.com Git - mothur.git/blob - heatmapcommand.h
broke apart read matrix file
[mothur.git] / heatmapcommand.h
1 #ifndef HEATMAPCOMMAND_H
2 #define HEATMAPCOMMAND_H
3
4 /*
5  *  heatmapcommand.h
6  *  Mothur
7  *
8  *  Created by Sarah Westcott on 3/25/09.
9  *  Copyright 2009 Schloss Lab UMASS Amherst. All rights reserved.
10  *
11  */
12
13
14 #include "command.hpp"
15 #include "inputdata.h"
16 #include "readotu.h"
17 #include "sharedlistvector.h"
18 #include "heatmap.h"
19 #include "sharedutilities.h"
20
21
22 class GlobalData;
23
24
25 class HeatMapCommand : public Command {
26
27 public:
28         HeatMapCommand();
29         ~HeatMapCommand();
30         int execute();
31         
32 private:
33         GlobalData* globaldata;
34         ReadOTUFile* read;
35         SharedUtil* util;
36         InputData* input;
37         SharedListVector* SharedList;
38         SharedOrderVector* order;
39         OrderVector* ordersingle;
40         HeatMap* heatmap;
41         string format;
42
43 };
44
45 #endif
46