]> git.donarmstrong.com Git - mothur.git/blob - heatmapsimcommand.h
added heatmap.sim command and changed heatmap to heatmap.bin
[mothur.git] / heatmapsimcommand.h
1 #ifndef HEATMAPSIMCOMMAND_H
2 #define HEATMAPSIMCOMMAND_H
3
4 /*
5  *  heatmapsimcommand.h
6  *  Mothur
7  *
8  *  Created by Sarah Westcott on 6/8/09.
9  *  Copyright 2009 Schloss Lab UMASS Amherst. All rights reserved.
10  *
11  */
12
13 #include "command.hpp"
14 #include "inputdata.h"
15 #include "readotu.h"
16 #include "validcalculator.h"
17 #include "heatmapsim.h"
18
19 class GlobalData;
20
21 class HeatMapSimCommand : public Command {
22
23 public:
24         HeatMapSimCommand();
25         ~HeatMapSimCommand();
26         int execute();
27         
28 private:
29         GlobalData* globaldata;
30         ReadOTUFile* read;
31         InputData* input;
32         vector<SharedRAbundVector*> lookup;
33         vector<Calculator*> heatCalculators;
34         ValidCalculators* validCalculator;
35         HeatMapSim* heatmap;
36
37 };
38
39 #endif
40