1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
|
#ifndef HEATMAPSIM_H
#define HEATMAPSIM_H
/*
* heatmapsim.h
* Mothur
*
* Created by Sarah Westcott on 6/8/09.
* Copyright 2009 Schloss Lab UMASS Amherst. All rights reserved.
*
*/
#include "calculator.h"
#include "utils.hpp"
class SharedRAbundVectors;
/***********************************************************************/
class HeatMapSim {
public:
HeatMapSim(string, string, int);
~HeatMapSim(){};
vector<string> getPic(SharedRAbundVectors*&, vector<Calculator*>, vector<string>);
string getPic(vector< vector<double> >, vector<string>);
private:
void printLegend(int, float, float);
string format, groupComb, outputDir, inputfile;
int fontSize;
ofstream outsvg;
MothurOut* m;
Utils util;
};
/***********************************************************************/
#endif
|