]> git.donarmstrong.com Git - mothur.git/blob - heatmapcommand.h
started heatmap command
[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 "readmatrix.hpp"
17 #include "sharedlistvector.h"
18
19
20 class GlobalData;
21
22
23 class HeatMapCommand : public Command {
24
25 public:
26         HeatMapCommand();
27         ~HeatMapCommand();
28         int execute();
29         
30 private:
31         GlobalData* globaldata;
32         ReadMatrix* read;
33         InputData* input;
34         SharedListVector* SharedList;
35         SharedOrderVector* order;
36         OrderVector* ordersingle;
37         string format;
38
39 };
40
41 #endif
42