]> git.donarmstrong.com Git - mothur.git/blobdiff - getoturepcommand.h
changing command name classify.shared to classifyrf.shared
[mothur.git] / getoturepcommand.h
index ceea8988a2bc0963abaa4d18d898729d88c8960a..ca3439d809f96f6eff93dcf3948abd1a8274a7f5 100644 (file)
  /* 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<PCell>::iterator MatData;
 typedef map<int, float> SeqMap;
 
 struct repStruct {
@@ -39,39 +37,54 @@ class GetOTURepCommand : public Command {
 
 public:
        GetOTURepCommand(string);
-       ~GetOTURepCommand();
-       int execute();
-       void help();
+       GetOTURepCommand();
+       ~GetOTURepCommand(){}
+       
+       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()); }  
+       
+       
 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;
+    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;
+       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;
+       vector<string> outputNames, Groups;
+       map<string, string> outputNameFiles;
        float cutoff;
        int precision;
        vector<SeqMap> seqVec;                  // contains maps with sequence index and distance
                                                                        // for all distances related to a certain sequence
        vector<int> rowPositions;
 
-       void readNamesFile();
+       void readNamesFile(FastaMap*&);
+       void readNamesFile(bool);
        int process(ListVector*);
        SeqMap getMap(int);
-       string findRep(int, string&, ListVector*, int&);        // returns the name of the "representative" sequence of given bin, 
-                                                                       // fills a string containing the groups in that bin if a groupfile is given,
-                                                                       // and returns the number of sequences in the given bin
-
+       string findRep(vector<string>, string);         // returns the name of the "representative" sequence of given bin or subset of a bin, for groups
+    string findRepAbund(vector<string>, string);
+       int processNames(string, string);
+       int processFastaNames(string, string, FastaMap*&);
+    int readDist();
 };
 
 #endif