]> git.donarmstrong.com Git - mothur.git/blobdiff - heatmap.h
changed heatmap and venn command to use vector of sharedrabunds instead of order...
[mothur.git] / heatmap.h
index 528c96416211a223e710467dd6baeb4cdb063c8f..29b6b9af302cf24b079f153eb75f993e0e83be21 100644 (file)
--- a/heatmap.h
+++ b/heatmap.h
 
 using namespace std;
 
-#include "ordervector.hpp"
 #include "rabundvector.hpp"
 #include "sharedrabundvector.h"
-#include "sharedordervector.h"
 #include "datavector.hpp"
 #include "globaldata.hpp"
-#include "sharedutilities.h"
 
 /***********************************************************************/
 
@@ -25,17 +22,16 @@ class HeatMap {
        
        public:
                HeatMap();
-               ~HeatMap(){ delete util; };
+               ~HeatMap(){};
        
-               void getPic(OrderVector*);
-               void getPic(SharedOrderVector*);
+               void getPic(RAbundVector*);
+               void getPic(vector<SharedRAbundVector*>);
 
        private:
                void sortSharedVectors(vector<SharedRAbundVector*>& );
                void printLegend(int, float);
 
                GlobalData* globaldata;
-               SharedUtil* util;
                string format, sorted, groupComb, scaler;
                ofstream outsvg;
                        
@@ -47,3 +43,4 @@ class HeatMap {
 
 
 
+