]> git.donarmstrong.com Git - mothur.git/blobdiff - heatmap.h
finished cluster.split adding classify method.
[mothur.git] / heatmap.h
index 29b6b9af302cf24b079f153eb75f993e0e83be21..ffbe94675df2dc8b968134ad79ffc7307bb1d458 100644 (file)
--- a/heatmap.h
+++ b/heatmap.h
@@ -9,8 +9,6 @@
  *
  */
 
-using namespace std;
-
 #include "rabundvector.hpp"
 #include "sharedrabundvector.h"
 #include "datavector.hpp"
@@ -21,19 +19,20 @@ using namespace std;
 class HeatMap {
        
        public:
-               HeatMap();
+               HeatMap(string, string, string);
                ~HeatMap(){};
        
-               void getPic(RAbundVector*);
-               void getPic(vector<SharedRAbundVector*>);
+               string getPic(RAbundVector*);
+               string getPic(vector<SharedRAbundVector*>);
 
        private:
                void sortSharedVectors(vector<SharedRAbundVector*>& );
                void printLegend(int, float);
 
                GlobalData* globaldata;
-               string format, sorted, groupComb, scaler;
+               string format, sorted, groupComb, scaler, outputDir;
                ofstream outsvg;
+               MothurOut* m;
                        
 };