X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=sharedcommand.h;h=861632ce7d6a8026c14b463387b9d8dbb320522d;hb=55386dddad84cc1140d736cabaf4dd0ae16f2e01;hp=5b922b6d6255eb993f8607fedc9696d4054f7caa;hpb=4ba6188707e67c638ea5ee3c787d5d07ccd07e3e;p=mothur.git diff --git a/sharedcommand.h b/sharedcommand.h index 5b922b6..861632c 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,31 +20,39 @@ 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 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); - void createMisMatchFile(); + int createMisMatchFile(); + int readOrderFile(); bool isValidGroup(string, vector); - void eliminateZeroOTUS(vector&); + int eliminateZeroOTUS(vector&); + int ListGroupSameSeqs(); - GlobalData* globaldata; - ReadOTUFile* read; SharedListVector* SharedList; InputData* input; GroupMap* groupMap; - vector groups; + vector Groups, outputNames, order; + set labels; ofstream out; - string filename, fileroot; - bool firsttime, pickedGroups; + string filename, fileroot, outputDir, listfile, groupfile, ordergroupfile; + bool firsttime, pickedGroups, abort, allLines; map filehandles; map::iterator it3;