X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=libshuffcommand.h;h=465a67f02d2858b86e8f79761c7f141813be185c;hb=e98d56be8369a799e61a411bc13d3bd1fa3451e5;hp=1e5726dd770f928b62ca8ef07fa3c24150c0a8b5;hpb=cd37904452dc95b183ff313ff05720c562902487;p=mothur.git diff --git a/libshuffcommand.h b/libshuffcommand.h index 1e5726d..465a67f 100644 --- a/libshuffcommand.h +++ b/libshuffcommand.h @@ -13,38 +13,46 @@ #include "command.hpp" #include "fullmatrix.h" #include "libshuff.h" +#include "groupmap.h" -class GlobalData; - class LibShuffCommand : public Command { public: - LibShuffCommand(string); + LibShuffCommand(string); + LibShuffCommand(); ~LibShuffCommand(){}; - int execute(); - void help(); + + vector setParameters(); + string getCommandName() { return "libshuff"; } + string getCommandCategory() { return "Hypothesis Testing"; } + string getHelpString(); + string getCitation() { return "Singleton DR, Furlong MA, Rathbun SL, Whitman WB (2001). Quantitative comparisons of 16S rRNA gene sequence libraries from environmental samples. Appl Environ Microbiol 67: 4374-6. \nSchloss PD, Larget BR, Handelsman J (2004). Integration of microbial ecology and statistics: a test to compare gene libraries. Appl Environ Microbiol 70: 5485-92. \nhttp://www.mothur.org/wiki/Libshuff"; } + string getDescription() { return "a generic test that describes whether two or more communities have the same structure using the Cramer-von Mises test statistic"; } + int execute(); + void help() { m->mothurOut(getHelpString()); } + private: vector groupNames; void setGroups(); - void printCoverageFile(); - void printSummaryFile(); - - GlobalData* globaldata; + int printCoverageFile(); + int printSummaryFile(); + + GroupMap* groupMap; FullMatrix* matrix; Libshuff* form; float cutOff, step; int numGroups, numComp, iters; - string coverageFile, summaryFile; + string coverageFile, summaryFile, phylipfile, groupfile; vector > pValueCounts; vector > savedDXYValues; vector > > savedMinValues; - bool abort; - string outputFile, groups, userform, savegroups; - vector Groups; //holds groups to be used + bool abort, sim; + string outputFile, groups, userform, savegroups, outputDir; + vector Groups, outputNames; //holds groups to be used }; #endif