]> git.donarmstrong.com Git - mothur.git/blobdiff - getlistcountcommand.h
changed random forest output filename
[mothur.git] / getlistcountcommand.h
index e238cf5fc8086f5ec29e6f419f6be0ec2c711e18..c2645562f1111c4a03be95c4e27c143745311ed5 100644 (file)
 #include "command.hpp"
 #include "inputdata.h"
 #include "listvector.hpp"
-#include "readotu.h"
-
-class GlobalData;
 
 /**********************************************************/
 
 class GetListCountCommand : public Command {
        
 public:
-       GetListCountCommand(string);    
-       ~GetListCountCommand();
-       int execute();
-       void help();    
+       GetListCountCommand(string);
+       GetListCountCommand();  
+       ~GetListCountCommand(){}
+       
+       vector<string> setParameters();
+       string getCommandName()                 { return "get.otulist";                         }
+       string getCommandCategory()             { return "OTU-Based Approaches";        }
+       string getCitation() { return "http://www.mothur.org/wiki/Get.otulist"; }
+       string getDescription()         { return "lists each OTU number and the sequence contained in that OTU"; }
+
+       
+       string getHelpString(); 
+    string getOutputPattern(string);   
+       
+       int execute(); 
+       void help() { m->mothurOut(getHelpString()); }  
+       
        
 private:
-       GlobalData* globaldata;
        ListVector* list;
-       ReadOTUFile* read;
        InputData* input;
        
        bool abort, allLines;
@@ -37,7 +45,7 @@ private:
        string label, listfile, outputDir, sort;
        ofstream out;
        vector<string> outputNames;
-       
+               
        void process(ListVector*);
 };
 /**********************************************************/