]> git.donarmstrong.com Git - mothur.git/blobdiff - makegroupcommand.h
moved mothur's source into a folder to make grabbing just the source easier on github
[mothur.git] / makegroupcommand.h
diff --git a/makegroupcommand.h b/makegroupcommand.h
deleted file mode 100644 (file)
index e0c7092..0000000
+++ /dev/null
@@ -1,42 +0,0 @@
-#ifndef MAKEGROUPCOMMAND_H
-#define MAKEGROUPCOMMAND_H
-
-/*
- *  makegroupcommand.h
- *  Mothur
- *
- *  Created by westcott on 5/7/10.
- *  Copyright 2010 Schloss Lab. All rights reserved.
- *
- */
-
-#include "command.hpp"
-
-class MakeGroupCommand : public Command {
-       
-public:
-       MakeGroupCommand(string);
-       MakeGroupCommand();     
-       ~MakeGroupCommand(){}
-       
-       vector<string> setParameters();
-       string getCommandName()                 { return "make.group";  }
-       string getCommandCategory()             { return "General";             }
-       string getHelpString(); 
-       string getCitation() { return "http://www.mothur.org/wiki/Make.group"; }
-       string getDescription()         { return "creates a group file"; }
-
-       int execute(); 
-       void help() { m->mothurOut(getHelpString()); }  
-       
-private:
-               
-       string fastaFileName, groups, outputDir, filename, output;
-       vector<string> fastaFileNames;
-       vector<string> groupsNames, outputNames;
-       
-       bool abort;
-};
-
-#endif
-