X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=sharedcommand.h;h=861632ce7d6a8026c14b463387b9d8dbb320522d;hb=8dd3c225255d7084e3aff8740aa4f1f1cabb367a;hp=20e2ddb3981df57f471970da64e3631814a6c170;hpb=bfbc55964f1977da72c2cea984288a427d370a59;p=mothur.git diff --git a/sharedcommand.h b/sharedcommand.h index 20e2ddb..861632c 100644 --- a/sharedcommand.h +++ b/sharedcommand.h @@ -12,8 +12,6 @@ #include "command.hpp" #include "sharedlistvector.h" #include "inputdata.h" -#include "shared.h" -#include "readmatrix.hpp" /* The shared() command: The shared command can only be executed after a successful read.shared command. @@ -22,25 +20,41 @@ 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(); + + vector setParameters(); + string getCommandName() { return "make.shared"; } + string getCommandCategory() { return "OTU-Based Approaches"; } + string getHelpString(); + 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(); - GlobalData* globaldata; - ReadMatrix* read; + void printSharedData(vector); + int createMisMatchFile(); + int readOrderFile(); + bool isValidGroup(string, vector); + int eliminateZeroOTUS(vector&); + int ListGroupSameSeqs(); + SharedListVector* SharedList; InputData* input; - Shared* shared; - map::iterator it; + GroupMap* groupMap; + vector Groups, outputNames, order; + set labels; ofstream out; - string filename; + string filename, fileroot, outputDir, listfile, groupfile, ordergroupfile; + bool firsttime, pickedGroups, abort, allLines; + map filehandles; + map::iterator it3; };