]> git.donarmstrong.com Git - mothur.git/blob - listseqscommand.h
added taxonomy file to list of files list.seqs, get.seqs and remove.seqs can process
[mothur.git] / listseqscommand.h
1 #ifndef LISTSEQSCOMMAND_H
2 #define LISTSEQSCOMMAND_H
3
4 /*
5  *  listseqscommand.h
6  *  Mothur
7  *
8  *  Created by Sarah Westcott on 7/8/09.
9  *  Copyright 2009 Schloss Lab UMASS Amherst. All rights reserved.
10  *
11  */
12
13 #include "command.hpp"
14
15 class ListSeqsCommand : public Command {
16         
17         public:
18         
19                 ListSeqsCommand(string);        
20                 ~ListSeqsCommand(){};
21                 int execute();
22                 void help();    
23                 
24         private:
25                 vector<string> names;
26                 string fastafile, namefile, groupfile, alignfile, inputFileName, outputDir, listfile, taxfile;
27                 bool abort;
28                 
29                 int readFasta();
30                 int readName();
31                 int readGroup();
32                 int readAlign();
33                 int readList();
34                 int readTax();
35                 
36 };
37
38 #endif
39