]> git.donarmstrong.com Git - mothur.git/blobdiff - heatmapcommand.h
added sorted option to get.rabund command
[mothur.git] / heatmapcommand.h
index fc50554c601c3c897f949775de7743c94cf33c9a..6d6c1d55020b170d8072b5a860ea7f89a1e50e71 100644 (file)
@@ -23,9 +23,10 @@ class GlobalData;
 class HeatMapCommand : public Command {
 
 public:
-       HeatMapCommand();
+       HeatMapCommand(string);
        ~HeatMapCommand();
        int execute();
+       void help();
        
 private:
        GlobalData* globaldata;
@@ -35,7 +36,13 @@ private:
        RAbundVector* rabund;
        vector<SharedRAbundVector*> lookup;
        HeatMap* heatmap;
-       string format;
+
+       bool abort, allLines;
+       set<int> lines; //hold lines to be used
+       set<string> labels; //holds labels to be used
+       string format, groups, sorted, scale, line, label;
+       vector<string> Groups;
+
 
 };