]> git.donarmstrong.com Git - mothur.git/blob - heatmap.h
changed heatmap and venn command to use vector of sharedrabunds instead of order...
[mothur.git] / heatmap.h
1 #ifndef HEATMAP_H
2 #define HEATMAP_H
3 /*
4  *  heatmap.h
5  *  Mothur
6  *
7  *  Created by Sarah Westcott on 3/25/09.
8  *  Copyright 2009 Schloss Lab UMASS Amherst. All rights reserved.
9  *
10  */
11
12 using namespace std;
13
14 #include "rabundvector.hpp"
15 #include "sharedrabundvector.h"
16 #include "datavector.hpp"
17 #include "globaldata.hpp"
18
19 /***********************************************************************/
20
21 class HeatMap {
22         
23         public:
24                 HeatMap();
25                 ~HeatMap(){};
26         
27                 void getPic(RAbundVector*);
28                 void getPic(vector<SharedRAbundVector*>);
29
30         private:
31                 void sortSharedVectors(vector<SharedRAbundVector*>& );
32                 void printLegend(int, float);
33
34                 GlobalData* globaldata;
35                 string format, sorted, groupComb, scaler;
36                 ofstream outsvg;
37                         
38 };
39
40 /***********************************************************************/
41
42 #endif
43
44
45
46