X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=libshuffcommand.h;h=1e5726dd770f928b62ca8ef07fa3c24150c0a8b5;hb=cd37904452dc95b183ff313ff05720c562902487;hp=490f23eaf1e89e1047b4f0336decde5344e6e2e8;hpb=8fd4a602269974e6548f4a387dddd6bd80a999ab;p=mothur.git diff --git a/libshuffcommand.h b/libshuffcommand.h index 490f23e..1e5726d 100644 --- a/libshuffcommand.h +++ b/libshuffcommand.h @@ -11,21 +11,40 @@ */ #include "command.hpp" +#include "fullmatrix.h" +#include "libshuff.h" -using namespace std; class GlobalData; class LibShuffCommand : public Command { - public: - LibShuffCommand(); - ~LibShuffCommand(); - int execute(); +public: + LibShuffCommand(string); + ~LibShuffCommand(){}; + int execute(); + void help(); + +private: + vector groupNames; - private: - GlobalData* globaldata; - + void setGroups(); + void printCoverageFile(); + void printSummaryFile(); + + GlobalData* globaldata; + FullMatrix* matrix; + Libshuff* form; + float cutOff, step; + int numGroups, numComp, iters; + string coverageFile, summaryFile; + vector > pValueCounts; + vector > savedDXYValues; + vector > > savedMinValues; + + bool abort; + string outputFile, groups, userform, savegroups; + vector Groups; //holds groups to be used }; #endif