]> git.donarmstrong.com Git - mothur.git/blob - chimerabellerophoncommand.h
Merge remote-tracking branch 'mothur/master'
[mothur.git] / chimerabellerophoncommand.h
1 #ifndef CHIMERABELLEROPHONCOMMAND_H
2 #define CHIMERABELLEROPHONCOMMAND_H
3
4 /*
5  *  chimerabellerophoncommand.h
6  *  Mothur
7  *
8  *  Created by westcott on 4/1/10.
9  *  Copyright 2010 Schloss Lab. All rights reserved.
10  *
11  */
12
13 #include "mothur.h"
14 #include "command.hpp"
15 #include "chimera.h"
16
17
18 /***********************************************************/
19
20 class ChimeraBellerophonCommand : public Command {
21 public:
22         ChimeraBellerophonCommand(string);
23         ChimeraBellerophonCommand();
24         ~ChimeraBellerophonCommand(){}
25         
26         vector<string> setParameters();
27         string getCommandName()                 { return "chimera.bellerophon"; }
28         string getCommandCategory()             { return "Sequence Processing"; }
29         string getOutputFileNameTag(string, string);
30         string getHelpString(); 
31         string getCitation() { return "Huber T, Faulkner G, Hugenholtz P (2004). Bellerophon: a program to detect chimeric sequences in multiple sequence alignments. Bioinformatics 20: 2317-9. \nhttp://www.mothur.org/wiki/Chimera.bellerophon"; }
32         string getDescription()         { return "detect chimeric sequences"; }
33         
34         int execute(); 
35         void help() { m->mothurOut(getHelpString()); }  
36         
37                 
38 private:
39
40         bool abort, filter, correction;
41         string fastafile, outputDir;
42         int processors, window, increment, numSeqs;
43         Chimera* chimera;
44         vector<string> outputNames;
45         vector<string> fastaFileNames;
46 };
47
48 /***********************************************************/
49
50 #endif
51
52