X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=sharedcommand.h;h=5d0daa2fdc484f55b78613541e1e82ef547a7d09;hb=0caf3fbabaa3ece404f8ce77f4c883dc5b1bf1dc;hp=f0c24884f05d36f3ed5981ef0ef75a7c57e17a8a;hpb=462fca6d24fd15ca035358ff70bcfae52c3281c3;p=mothur.git diff --git a/sharedcommand.h b/sharedcommand.h index f0c2488..5d0daa2 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,27 +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(); - 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(); - GlobalData* globaldata; - ReadOTUFile* read; - SharedListVector* SharedList; - InputData* input; - GroupMap* groupMap; - ofstream out; - string filename, fileroot; - bool firsttime; + void printSharedData(vector, ofstream&); + int createMisMatchFile(SharedListVector*, GroupMap*); + 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, ifstream&, int&); + int getDims(string, int&, int&); + vector readData(string, string, ifstream&, vector&, int); + + vector Groups, outputNames, order; + set labels; + string fileroot, outputDir, listfile, groupfile, biomfile, ordergroupfile; + bool firsttime, pickedGroups, abort, allLines; map filehandles; map::iterator it3;