X-Git-Url: https://git.donarmstrong.com/?p=mothur.git;a=blobdiff_plain;f=sharedcommand.h;h=39ef9a7a1ebc17f830103cf33d84520aca975f97;hp=3467c7b1d9e6beb1bcd2b5af9a63f9d9bbaf8045;hb=615301e57c25e241356a9c2380648d117709458d;hpb=29c0d3ec01be5372807eb86261100d77de253787 diff --git a/sharedcommand.h b/sharedcommand.h index 3467c7b..39ef9a7 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,42 @@ 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(); + string getOutputPattern(string); + string getCitation() { return "http://www.mothur.org/wiki/Make.shared"; } + string getDescription() { return "make a shared file from a list and group file"; } + + int execute(); + void help() { m->mothurOut(getHelpString()); } private: - void printSharedData(vector); - GlobalData* globaldata; - ReadOTUFile* read; - SharedListVector* SharedList; - InputData* input; - GroupMap* groupMap; - ofstream out; - string filename, fileroot; - bool firsttime; + void printSharedData(vector, ofstream&); + int readOrderFile(); + bool isValidGroup(string, vector); + int eliminateZeroOTUS(vector&); + int ListGroupSameSeqs(vector&, SharedListVector*); + int createSharedFromListGroup(string); + int createSharedFromBiom(string); + string getTag(string&); + vector readRows(string, int&); + int getDims(string, int&, int&); + vector readData(string, string, string, vector&, int); + + vector Groups, outputNames, order; + set labels; + string fileroot, outputDir, listfile, groupfile, biomfile, ordergroupfile, countfile; + bool firsttime, pickedGroups, abort, allLines; map filehandles; map::iterator it3;