]> git.donarmstrong.com Git - mothur.git/blobdiff - getgroupcommand.h
fixed subsample name file name issue. added count parameter to cluster command....
[mothur.git] / getgroupcommand.h
index bc805bdc7ef5363b3c300b4bc980f535704ee0f7..7924d7b55a708886c0875bf26f173ffa13cc9da1 100644 (file)
  */
 
 #include "command.hpp"
-#include "globaldata.hpp"
 
 class GetgroupCommand : public Command {
 public:
        GetgroupCommand(string);
-       ~GetgroupCommand();
-       int execute();
-       void help();
+       GetgroupCommand();
+       ~GetgroupCommand() {}
+       
+       vector<string> setParameters();
+       string getCommandName()                 { return "get.group";                           }
+       string getCommandCategory()             { return "OTU-Based Approaches";        }
+       string getOutputFileNameTag(string, string) { return "";  }
+       string getHelpString(); 
+       string getCitation() { return "http://www.mothur.org/wiki/Get.group"; }
+       string getDescription()         { return "outputs group names"; }
+
+       
+       int execute(); 
+       void help() { m->mothurOut(getHelpString()); }  
+       
        
 private:
-       GlobalData* globaldata;
-       GroupMap* groupMap;
-       string outputFile, sharedfile;
+       
+       string outputFile, sharedfile, outputDir;
+       vector<string> outputNames;
        ofstream out;
        ifstream in;
        bool abort;