]> git.donarmstrong.com Git - mothur.git/blobdiff - heatmapsimcommand.h
changed random forest output filename
[mothur.git] / heatmapsimcommand.h
index 33696a33ac87b34bedea636810b32e4daa09be8c..f421fdc5bf2c3ff8aed22a197afc3309a86b4e34 100644 (file)
 
 #include "command.hpp"
 #include "inputdata.h"
-#include "readotu.h"
 #include "validcalculator.h"
 #include "heatmapsim.h"
-
-class GlobalData;
+#include "nameassignment.hpp"
 
 class HeatMapSimCommand : public Command {
 
 public:
+       HeatMapSimCommand(string);
        HeatMapSimCommand();
-       ~HeatMapSimCommand();
-       int execute();
+       ~HeatMapSimCommand(){}
+       
+       vector<string> setParameters();
+       string getCommandName()                 { return "heatmap.sim";                         }
+       string getCommandCategory()             { return "OTU-Based Approaches";        }
+       
+       string getHelpString(); 
+    string getOutputPattern(string);   
+       string getCitation() { return "http://www.mothur.org/wiki/Heatmap.sim"; }
+       string getDescription()         { return "generate a heatmap indicating the pairwise distance between multiple samples using a variety of calculators"; }
+
+       int execute(); 
+       void help() { m->mothurOut(getHelpString()); }  
+       
        
 private:
-       GlobalData* globaldata;
-       ReadOTUFile* read;
        InputData* input;
        vector<SharedRAbundVector*> lookup;
        vector<Calculator*> heatCalculators;
-       ValidCalculators* validCalculator;
        HeatMapSim* heatmap;
+       OptionParser* parser;
+       bool abort, allLines;
+       set<string> labels; //holds labels to be used
+       string format, groups, label, calc, sharedfile, phylipfile, columnfile, countfile, namefile, outputDir, inputfile;
+       vector<string> Estimators, Groups, outputNames;
+       int fontsize;
+       
+       int runCommandShared();
+       int runCommandDist();
+
 
 };