]> git.donarmstrong.com Git - mothur.git/blob - heatmapsim.h
added heatmap.sim command and changed heatmap to heatmap.bin
[mothur.git] / heatmapsim.h
1 #ifndef HEATMAPSIM_H
2 #define HEATMAPSIM_H
3 /*
4  *  heatmapsim.h
5  *  Mothur
6  *
7  *  Created by Sarah Westcott on 6/8/09.
8  *  Copyright 2009 Schloss Lab UMASS Amherst. All rights reserved.
9  *
10  */
11
12
13 #include "sharedrabundvector.h"
14 #include "datavector.hpp"
15 #include "globaldata.hpp"
16 #include "calculator.h"
17
18 /***********************************************************************/
19
20 class HeatMapSim {
21         
22         public:
23                 HeatMapSim();
24                 ~HeatMapSim(){};
25         
26                 void getPic(vector<SharedRAbundVector*>, vector<Calculator*>);
27
28         private:
29                 void printLegend(int, float);
30
31                 GlobalData* globaldata;
32                 string format, groupComb;
33                 ofstream outsvg;
34                         
35 };
36
37 /***********************************************************************/
38
39 #endif
40