]> git.donarmstrong.com Git - mothur.git/blobdiff - venncommand.h
added parse.fastaq command, added permute option to venn command, fixed bug with...
[mothur.git] / venncommand.h
index 663839c92ca560e8b5f657a775b634c83ef8af6d..f6bdf395e20eeba3af9c7c7b4bba206daa9ebe56 100644 (file)
@@ -23,9 +23,10 @@ class GlobalData;
 class VennCommand : public Command {
 
 public:
-       VennCommand();
+       VennCommand(string);
        ~VennCommand();
        int execute();
+       void help();
        
 private:
        GlobalData* globaldata;
@@ -33,15 +34,24 @@ private:
        InputData* input;
        SharedListVector* SharedList;
        Venn* venn;
-       string format;
        vector<Calculator*> vennCalculators;    
        ValidCalculators* validCalculator;
        vector<SharedRAbundVector*> lookup;
+       set< set<int> > combosOfFour;
        SAbundVector* sabund;
        int abund;
+       
+       bool abort, allLines, nseqs, perm;
+       set<string> labels; //holds labels to be used
+       string format, groups, calc, label, outputDir;
+       vector<string> Estimators, Groups;
+       
+       set< set<int> > findCombinations(int);
+       int getCombos(set<int>, set< set<int> >&);
+
 
 };
 
 
 
-#endif
\ No newline at end of file
+#endif