]> git.donarmstrong.com Git - mothur.git/blob - chopseqscommand.h
removed read.dist, read.otu, read.tree and globaldata. added current to defaults...
[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 #include "sequence.hpp"
16
17 class ChopSeqsCommand : public Command {
18         
19         public:
20         
21                 ChopSeqsCommand(string);
22                 ChopSeqsCommand();      
23                 ~ChopSeqsCommand(){};
24         
25                 vector<string> setParameters();
26                 string getCommandName()                 { return "chop.seqs";           }
27                 string getCommandCategory()             { return "Sequence Processing"; }
28                 string getHelpString(); 
29         
30                 int execute(); 
31                 void help() { m->mothurOut(getHelpString()); }          
32         
33         private:
34                 string fastafile, outputDir, keep;
35                 bool abort, countGaps, Short;
36                 int numbases;
37                 vector<string> outputNames;
38                 
39                 string getChopped(Sequence);
40 };
41
42 #endif
43
44