]> git.donarmstrong.com Git - mothur.git/blobdiff - getoturepcommand.h
sffinfo bug with flow grams right index when clipQualRight=0
[mothur.git] / getoturepcommand.h
index d8f8f0905ba3c3e8c09dfb8ec83ec34f817db89e..a1bf3f0229a98231e9a627e4fc98f9d23ad897ea 100644 (file)
@@ -18,8 +18,8 @@
 #include "groupmap.h"
 #include "readmatrix.hpp"
 #include "formatmatrix.h"
+#include "counttable.h"
 
-typedef list<PCell>::iterator MatData;
 typedef map<int, float> SeqMap;
 
 struct repStruct {
@@ -43,7 +43,12 @@ public:
        vector<string> setParameters();
        string getCommandName()                 { return "get.oturep";                          }
        string getCommandCategory()             { return "OTU-Based Approaches";        }
+       
        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"; }
+
        
        int execute(); 
        void help() { m->mothurOut(getHelpString()); }  
@@ -57,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<string> labels; //holds labels to be used
        map<string, int> nameToIndex;  //maps sequence name to index in sparsematrix
        map<string, string> nameFileMap;
@@ -76,8 +82,10 @@ private:
        void readNamesFile(bool);
        int process(ListVector*);
        SeqMap getMap(int);
-       string findRep(vector<string>);         // returns the name of the "representative" sequence of given bin or subset of a bin, for groups
+       string findRep(vector<string>, 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