X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=getoturepcommand.h;h=390632975afc85aac5b714c7194c81e74d58e16e;hb=e10c72304ee071c0c40e0218a06d89dc4731cbc2;hp=d8f8f0905ba3c3e8c09dfb8ec83ec34f817db89e;hpb=ca9ac1d80c62f57270b0dcd49410ebe08a8aecd6;p=mothur.git diff --git a/getoturepcommand.h b/getoturepcommand.h index d8f8f09..3906329 100644 --- a/getoturepcommand.h +++ b/getoturepcommand.h @@ -18,8 +18,8 @@ #include "groupmap.h" #include "readmatrix.hpp" #include "formatmatrix.h" +#include "counttable.h" -typedef list::iterator MatData; typedef map SeqMap; struct repStruct { @@ -43,7 +43,11 @@ public: 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()); } @@ -57,10 +61,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; @@ -76,8 +81,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