X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=getoturepcommand.h;h=390632975afc85aac5b714c7194c81e74d58e16e;hb=96dbe925073caefaed6e6db85659c144a806aeb1;hp=8099a3998c1a63de92d9c72b2c5419c08e2f96ff;hpb=a8367302932de9be5434e77f6e5829d7609e2aec;p=mothur.git diff --git a/getoturepcommand.h b/getoturepcommand.h index 8099a39..3906329 100644 --- a/getoturepcommand.h +++ b/getoturepcommand.h @@ -12,16 +12,14 @@ /* The get.oturep command outputs a .fastarep file for each distance you specify, selecting one OTU representative for each bin. */ #include "command.hpp" -#include "globaldata.hpp" #include "listvector.hpp" #include "inputdata.h" -#include "readotu.h" #include "fastamap.h" #include "groupmap.h" #include "readmatrix.hpp" #include "formatmatrix.h" +#include "counttable.h" -typedef list::iterator MatData; typedef map SeqMap; struct repStruct { @@ -39,26 +37,38 @@ class GetOTURepCommand : public Command { public: GetOTURepCommand(string); - ~GetOTURepCommand(); - int execute(); - void help(); + GetOTURepCommand(); + ~GetOTURepCommand(){} + + vector setParameters(); + string getCommandName() { return "get.oturep"; } + string getCommandCategory() { return "OTU-Based Approaches"; } + string getOutputFileNameTag(string, string); + string getHelpString(); + string getCitation() { return "http://www.mothur.org/wiki/Get.oturep"; } + string getDescription() { return "gets a representative sequence for each OTU"; } + + int execute(); + void help() { m->mothurOut(getHelpString()); } + + private: - GlobalData* globaldata; ListVector* list; - ReadOTUFile* read; InputData* input; FastaMap* fasta; GroupMap* groupMap; ReadMatrix* readMatrix; FormatMatrix* formatMatrix; NameAssignment* nameMap; - string filename, fastafile, listfile, namefile, groupfile, label, sorted, phylipfile, columnfile, distFile, format, outputDir, groups; + CountTable ct; + string filename, fastafile, listfile, namefile, groupfile, label, sorted, phylipfile, countfile, columnfile, distFile, format, outputDir, groups; ofstream out; ifstream in, inNames, inRow; - bool abort, allLines, groupError, large; + bool abort, allLines, groupError, large, weighted, hasGroups; set labels; //holds labels to be used map nameToIndex; //maps sequence name to index in sparsematrix + map nameFileMap; vector outputNames, Groups; map outputNameFiles; float cutoff; @@ -68,12 +78,13 @@ private: vector rowPositions; void readNamesFile(); + void readNamesFile(bool); int process(ListVector*); SeqMap getMap(int); - string findRep(vector); // returns the name of the "representative" sequence of given bin or subset of a bin, for groups + string findRep(vector, string); // returns the name of the "representative" sequence of given bin or subset of a bin, for groups int processNames(string, string); - - + int processFastaNames(string, string); + int readDist(); }; #endif