X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=getsharedotucommand.h;h=ea6ed94ee687004d88a04e140f187392b05f5b42;hb=2c97dd48b8e27ee0a6a86c7a082f4c504c3357c6;hp=3b14b39bb70e8939641dea69c2e53bcb98a82ffa;hpb=c82900be3ceed3d9bc491bdc98b1819ef85c1af7;p=mothur.git diff --git a/getsharedotucommand.h b/getsharedotucommand.h index 3b14b39..ea6ed94 100644 --- a/getsharedotucommand.h +++ b/getsharedotucommand.h @@ -14,7 +14,6 @@ #include "listvector.hpp" #include "sequence.hpp" #include "groupmap.h" -#include "globaldata.hpp" //********************************************************************************************************************** class GetSharedOTUCommand : public Command { @@ -22,25 +21,36 @@ class GetSharedOTUCommand : public Command { public: GetSharedOTUCommand(string); - ~GetSharedOTUCommand(); - int execute(); - void help(); + GetSharedOTUCommand(); + ~GetSharedOTUCommand() {} + + vector setParameters(); + string getCommandName() { return "get.sharedseqs"; } + string getCommandCategory() { return "OTU-Based Approaches"; } + string getRequiredCommand() { return "none"; } + string getHelpString(); + string getCitation() { return "http://www.mothur.org/wiki/Get.sharedseqs"; } + string getDescription() { return "identifies sequences that are either unique or shared by specific groups"; } + + int execute(); + void help() { m->mothurOut(getHelpString()); } + + private: - - GlobalData* globaldata; ListVector* list; GroupMap* groupMap; set labels; - string fastafile, label, groups, listfile, groupfile, output; + string fastafile, label, groups, listfile, groupfile, output, userGroups, outputDir, format; bool abort, allLines, unique; vector Groups; map groupFinder; map::iterator it; vector seqs; + vector outputNames; - void process(ListVector*); + int process(ListVector*); }; //**********************************************************************************************************************