]> git.donarmstrong.com Git - mothur.git/blob - heatmapsim.h
added modify names parameter to set.dir
[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 "calculator.h"
16
17 /***********************************************************************/
18
19 class HeatMapSim {
20         
21         public:
22                 HeatMapSim(string, string, int);
23                 ~HeatMapSim(){};
24         
25                 vector<string> getPic(vector<SharedRAbundVector*>, vector<Calculator*>);
26                 string getPic(vector< vector<double> >, vector<string>);
27
28         private:
29                 void printLegend(int, float);
30
31                 string format, groupComb, outputDir, inputfile;
32                 int fontSize;
33                 ofstream outsvg;
34                 MothurOut* m;
35                         
36 };
37
38 /***********************************************************************/
39
40 #endif
41