]> git.donarmstrong.com Git - mothur.git/blobdiff - venncommand.h
changed reporting in ccode to only report those who are found to be chimeric by all...
[mothur.git] / venncommand.h
index d91aaef1c7e47185862cf1a681976a31c47ebb75..79a22d9bf6127a222382a6878ac026ebf1d5ae2b 100644 (file)
@@ -11,7 +11,7 @@
  
 #include "command.hpp"
 #include "inputdata.h"
-#include "readmatrix.hpp"
+#include "readotu.h"
 #include "sharedlistvector.h"
 #include "venn.h"
 #include "validcalculator.h"
@@ -23,27 +23,32 @@ class GlobalData;
 class VennCommand : public Command {
 
 public:
-       VennCommand();
+       VennCommand(string);
        ~VennCommand();
        int execute();
+       void help();
        
 private:
        GlobalData* globaldata;
-       ReadMatrix* read;
+       ReadOTUFile* read;
        InputData* input;
        SharedListVector* SharedList;
-       SharedOrderVector* order;
-       OrderVector* ordersingle;
        Venn* venn;
-       string format;
        vector<Calculator*> vennCalculators;    
        ValidCalculators* validCalculator;
+       vector<SharedRAbundVector*> lookup;
+       SAbundVector* sabund;
        int abund;
        
-       void setGroups();
+       bool abort, allLines;
+       set<int> lines; //hold lines to be used
+       set<string> labels; //holds labels to be used
+       string format, groups, calc, line, label;
+       vector<string> Estimators, Groups;
+
 
 };
 
 
 
-#endif
\ No newline at end of file
+#endif