]> git.donarmstrong.com Git - mothur.git/blobdiff - heatmapcommand.h
pat's mods to morisitahorn and pre.cluster
[mothur.git] / heatmapcommand.h
index f75c06425e7b6af1232809fb8a2f1f98c20d98aa..5c00b284061dd279db4ee52aaa891ef700d0cc61 100644 (file)
 
 #include "command.hpp"
 #include "inputdata.h"
-#include "readmatrix.hpp"
+#include "readotu.h"
 #include "sharedlistvector.h"
 #include "heatmap.h"
-#include "sharedutilities.h"
-
+#include "rabundvector.hpp"
 
 class GlobalData;
 
-
 class HeatMapCommand : public Command {
 
 public:
-       HeatMapCommand();
+       HeatMapCommand(string);
        ~HeatMapCommand();
        int execute();
+       void help();
        
 private:
        GlobalData* globaldata;
-       ReadMatrix* read;
-       SharedUtil* util;
+       ReadOTUFile* read;
        InputData* input;
        SharedListVector* SharedList;
-       SharedOrderVector* order;
-       OrderVector* ordersingle;
+       RAbundVector* rabund;
+       vector<SharedRAbundVector*> lookup;
        HeatMap* heatmap;
-       string format;
+
+       bool abort, allLines;
+       set<string> labels; //holds labels to be used
+       string format, groups, sorted, scale, label;
+       vector<string> Groups;
+
 
 };