]> git.donarmstrong.com Git - mothur.git/blob - heatmapsim.h
you can now use a distance matrix as input for the heatmap.sim command.
[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                 void getPic(vector< vector<double> >, vector<string>);
28
29         private:
30                 void printLegend(int, float);
31
32                 GlobalData* globaldata;
33                 string format, groupComb;
34                 ofstream outsvg;
35                         
36 };
37
38 /***********************************************************************/
39
40 #endif
41