]> git.donarmstrong.com Git - mothur.git/blob - clearcutcommand.h
1.10.0
[mothur.git] / clearcutcommand.h
1 #ifndef CLEARCUTCOMMAND_H
2 #define CLEARCUTCOMMAND_H
3
4 /*
5  *  clearcutcommand.h
6  *  Mothur
7  *
8  *  Created by westcott on 5/11/10.
9  *  Copyright 2010 Schloss Lab. All rights reserved.
10  *
11  */
12
13 #include "command.hpp"
14 #include "globaldata.hpp"
15
16 /* 
17   Evans, J., L. Sheneman, and J.A. Foster (2006) Relaxed Neighbor-Joining: 
18   A Fast Distance-Based Phylogenetic Tree Construction Method, 
19   J. Mol. Evol., 62, 785-792
20  */ 
21
22 /****************************************************************************/
23
24 class ClearcutCommand : public Command {
25
26 public:
27         ClearcutCommand(string);
28         ~ClearcutCommand() {};
29         int execute();
30         void help();    
31         
32 private:
33         string outputDir, phylipfile, fastafile, matrixout, inputFile, seed, ntrees;
34         bool version, verbose, quiet, norandom, shuffle, neighbor, expblen, expdist, stdoutWanted, kimura, jukes, protein, DNA, stdinWanted;
35         bool abort;
36 };
37
38 /****************************************************************************/
39
40 #endif
41