]> git.donarmstrong.com Git - mothur.git/blobdiff - countseqscommand.h
moved mothur's source into a folder to make grabbing just the source easier on github
[mothur.git] / countseqscommand.h
diff --git a/countseqscommand.h b/countseqscommand.h
deleted file mode 100644 (file)
index 89549a9..0000000
+++ /dev/null
@@ -1,42 +0,0 @@
-#ifndef COuNTSEQSCOMMAND_H
-#define COuNTSEQSCOMMAND_H
-
-/*
- *  countseqscommand.h
- *  Mothur
- *
- *  Created by westcott on 6/1/11.
- *  Copyright 2011 Schloss Lab. All rights reserved.
- *
- */
-
-#include "command.hpp"
-
-class CountSeqsCommand : public Command {
-       
-public:
-       
-       CountSeqsCommand(string);
-       CountSeqsCommand();     
-       ~CountSeqsCommand(){}
-       
-       vector<string> setParameters();
-       string getCommandName()                 { return "count.seqs";                          }
-       string getCommandCategory()             { return "Sequence Processing";         }
-       string getHelpString(); 
-       string getCitation() { return "http://www.mothur.org/wiki/Count.seqs"; }
-       string getDescription()         { return "counts the number of sequences represented by each unique sequence in a namesfile"; }
-
-       int execute(); 
-       void help() { m->mothurOut(getHelpString()); }  
-       
-       
-private:
-       string namefile, groupfile, outputDir, groups;
-       bool abort;
-       vector<string> Groups;
-};
-
-#endif
-
-