]> git.donarmstrong.com Git - mothur.git/blobdiff - getgroupcommand.h
chimera.slayer
[mothur.git] / getgroupcommand.h
index 496d0c9c91d2970ecbef50977ff78e8795526538..79dd8057216ec17fcd706d5a6a480c461161a458 100644 (file)
  */
 
 #include "command.hpp"
-#include "globaldata.hpp"
 
 class GetgroupCommand : public Command {
 public:
+       GetgroupCommand(string);
        GetgroupCommand();
-       ~GetgroupCommand();
-       int execute();
+       ~GetgroupCommand() {}
+       
+       vector<string> setParameters();
+       string getCommandName()                 { return "get.group";                           }
+       string getCommandCategory()             { return "OTU-Based Approaches";        }
+       string getHelpString(); 
+       
+       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;
 
 };