X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=getoturepcommand.h;h=daf5bc16cbd3640093502d315af1f35008300ef0;hb=250e3b11b1c9c1e1ad458ab6c7e71ac2e67e11d9;hp=5af0340b4b920a4fab3decc79bd2b3b4237f85ef;hpb=49d2b7459c5027557564b21e9487dadafbbbdc96;p=mothur.git diff --git a/getoturepcommand.h b/getoturepcommand.h index 5af0340..daf5bc1 100644 --- a/getoturepcommand.h +++ b/getoturepcommand.h @@ -18,18 +18,19 @@ #include "groupmap.h" #include "readmatrix.hpp" #include "formatmatrix.h" +#include "counttable.h" -typedef list::iterator MatData; typedef map SeqMap; struct repStruct { string name; - int bin; + string bin; + int simpleBin; int size; string group; repStruct(){} - repStruct(string n, int b, int s, string g) : name(n), bin(b), size(s), group(g) {} + repStruct(string n, string b, int sb, int s, string g) : name(n), bin(b), size(s), group(g), simpleBin(sb) { } ~repStruct() {} }; @@ -43,8 +44,9 @@ public: vector setParameters(); string getCommandName() { return "get.oturep"; } string getCommandCategory() { return "OTU-Based Approaches"; } - string getOutputFileNameTag(string, string); + string getHelpString(); + string getOutputPattern(string); string getCitation() { return "http://www.mothur.org/wiki/Get.oturep"; } string getDescription() { return "gets a representative sequence for each OTU"; } @@ -55,16 +57,15 @@ public: private: ListVector* list; - 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, method; ofstream out; ifstream in, inNames, inRow; - bool abort, allLines, groupError, large, weighted; + 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; @@ -76,13 +77,15 @@ private: // for all distances related to a certain sequence vector rowPositions; - void readNamesFile(); + void readNamesFile(FastaMap*&); 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 + string findRepAbund(vector, string); int processNames(string, string); - int processFastaNames(string, string); + int processFastaNames(string, string, FastaMap*&); + int readDist(); }; #endif