]> git.donarmstrong.com Git - mothur.git/blob - chopseqscommand.h
added chop.seqs command
[mothur.git] / chopseqscommand.h
1 #ifndef CHOPSEQSCOMMAND_H
2 #define CHOPSEQSCOMMAND_H
3
4 /*
5  *  chopseqscommand.h
6  *  Mothur
7  *
8  *  Created by westcott on 5/10/10.
9  *  Copyright 2010 Schloss Lab. All rights reserved.
10  *
11  */
12
13
14 #include "command.hpp"
15
16 class ChopSeqsCommand : public Command {
17         
18         public:
19         
20                 ChopSeqsCommand(string);        
21                 ~ChopSeqsCommand(){};
22                 int execute();
23                 void help();    
24                 
25         private:
26                 string fastafile, outputDir;
27                 bool abort;
28                 int end;
29 };
30
31 #endif
32
33