]> git.donarmstrong.com Git - mothur.git/blob - makegroupcommand.h
modified trim.seqs to account for primers of different lengths
[mothur.git] / makegroupcommand.h
1 #ifndef MAKEGROUPCOMMAND_H
2 #define MAKEGROUPCOMMAND_H
3
4 /*
5  *  makegroupcommand.h
6  *  Mothur
7  *
8  *  Created by westcott on 5/7/10.
9  *  Copyright 2010 Schloss Lab. All rights reserved.
10  *
11  */
12
13 #include "command.hpp"
14
15 class MakeGroupCommand : public Command {
16         
17 public:
18         MakeGroupCommand(string);       
19         ~MakeGroupCommand();
20         int execute(); 
21         void help();    
22         
23 private:
24                 
25         string fastaFileName, groups, outputDir;
26         vector<string> fastaFileNames;
27         vector<string> groupsNames;
28         
29         bool abort;
30 };
31
32 #endif
33