]> git.donarmstrong.com Git - mothur.git/blob - listseqscommand.h
fixed ties issue in maligner getBlastSeqs
[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                 ~ListSeqsCommand(){}
22         
23                 vector<string> setParameters();
24                 string getCommandName()                 { return "list.seqs";                           }
25                 string getCommandCategory()             { return "Sequence Processing";         }
26                 string getHelpString(); 
27         
28                 int execute(); 
29                 void help() { m->mothurOut(getHelpString()); }  
30         
31         
32         private:
33                 vector<string> names, outputNames;
34                 string fastafile, namefile, groupfile, alignfile, inputFileName, outputDir, listfile, taxfile;
35                 bool abort;
36                 
37                 int readFasta();
38                 int readName();
39                 int readGroup();
40                 int readAlign();
41                 int readList();
42                 int readTax();
43                 
44 };
45
46 #endif
47