X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=sharedcommand.h;h=f1e7c48cd71ee7ff1984e43cb7bb5676a3ee42a5;hb=ca9ac1d80c62f57270b0dcd49410ebe08a8aecd6;hp=3467c7b1d9e6beb1bcd2b5af9a63f9d9bbaf8045;hpb=29c0d3ec01be5372807eb86261100d77de253787;p=mothur.git diff --git a/sharedcommand.h b/sharedcommand.h index 3467c7b..f1e7c48 100644 --- a/sharedcommand.h +++ b/sharedcommand.h @@ -12,7 +12,6 @@ #include "command.hpp" #include "sharedlistvector.h" #include "inputdata.h" -#include "readotu.h" /* The shared() command: The shared command can only be executed after a successful read.shared command. @@ -21,26 +20,36 @@ There are no shared command parameters. The shared command should be in the following format: shared(). */ -class GlobalData; - class SharedCommand : public Command { public: - SharedCommand(); + SharedCommand(string); + SharedCommand(); ~SharedCommand(); - int execute(); - void help() {} + + vector setParameters(); + string getCommandName() { return "make.shared"; } + string getCommandCategory() { return "OTU-Based Approaches"; } + string getHelpString(); + + int execute(); + void help() { m->mothurOut(getHelpString()); } private: void printSharedData(vector); - GlobalData* globaldata; - ReadOTUFile* read; + int createMisMatchFile(); + int readOrderFile(); + bool isValidGroup(string, vector); + int eliminateZeroOTUS(vector&); + SharedListVector* SharedList; InputData* input; GroupMap* groupMap; + vector Groups, outputNames, order; + set labels; ofstream out; - string filename, fileroot; - bool firsttime; + string filename, fileroot, outputDir, listfile, groupfile, ordergroupfile; + bool firsttime, pickedGroups, abort, allLines; map filehandles; map::iterator it3;