]> git.donarmstrong.com Git - mothur.git/blob - heatmapsim.h
created mothurOut class to handle logfiles
[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(string);
24                 ~HeatMapSim(){};
25         
26                 vector<string> getPic(vector<SharedRAbundVector*>, vector<Calculator*>);
27                 string getPic(vector< vector<double> >, vector<string>);
28
29         private:
30                 void printLegend(int, float);
31
32                 GlobalData* globaldata;
33                 string format, groupComb, outputDir;
34                 ofstream outsvg;
35                 MothurOut* m;
36                         
37 };
38
39 /***********************************************************************/
40
41 #endif
42