X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=getoturepcommand.h;h=a1bf3f0229a98231e9a627e4fc98f9d23ad897ea;hb=b740fb182372143e152143c6cc5b9ac8591f09b7;hp=d19a396410f2e2c9850f9b20a93d65c03000bac2;hpb=f687723a8357916e86a05116978e6869b039ce36;p=mothur.git diff --git a/getoturepcommand.h b/getoturepcommand.h index d19a396..a1bf3f0 100644 --- a/getoturepcommand.h +++ b/getoturepcommand.h @@ -18,6 +18,7 @@ #include "groupmap.h" #include "readmatrix.hpp" #include "formatmatrix.h" +#include "counttable.h" typedef map SeqMap; @@ -42,8 +43,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"; } @@ -60,10 +62,11 @@ private: 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, 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; @@ -79,9 +82,10 @@ private: 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