X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=summarysharedcommand.h;h=f366d0f62432e0bc34c475b190f946a04ba26335;hb=2bb9267aa4b4ecdf8488b06605cc9f3f36fa4332;hp=b99e0f037206496f788635fa7d8a6ce21958d56b;hpb=7588ff51d365aad66f455694afb90b6fd3e6639a;p=mothur.git diff --git a/summarysharedcommand.h b/summarysharedcommand.h index b99e0f0..f366d0f 100644 --- a/summarysharedcommand.h +++ b/summarysharedcommand.h @@ -14,18 +14,25 @@ #include "sharedrabundvector.h" #include "inputdata.h" #include "calculator.h" -#include "readotu.h" #include "validcalculator.h" -class GlobalData; - class SummarySharedCommand : public Command { public: SummarySharedCommand(string); - ~SummarySharedCommand(); - int execute(); - void help(); + SummarySharedCommand(); + ~SummarySharedCommand() {} + + vector setParameters(); + string getCommandName() { return "summary.shared"; } + string getCommandCategory() { return "OTU-Based Approaches"; } + string getHelpString(); + string getCitation() { return "http://www.mothur.org/wiki/Summary.shared"; } + string getDescription() { return "generate a summary file containing calculator values for each line in the OTU data and for all possible comparisons between groups"; } + + int execute(); + void help() { m->mothurOut(getHelpString()); } + private: struct linePair { @@ -33,21 +40,18 @@ private: int end; }; vector lines; - GlobalData* globaldata; - ReadOTUFile* read; vector sumCalculators; InputData* input; - ValidCalculators* validCalculator; - bool abort, allLines, mult, all; + bool abort, allLines, mult, all, createPhylip; set labels; //holds labels to be used - string label, calc, groups; + string label, calc, groups, sharedfile; vector Estimators, Groups, outputNames; vector lookup; string format, outputDir; int numGroups, processors; int process(vector, string, string); - int driver(vector, int, int, string, string); + int driver(vector, int, int, string, string, vector< vector >&); };