]> git.donarmstrong.com Git - mothur.git/blob - errorchecking.h
fixed memory leak in parsimony calculator and added progress bars to parsimony and...
[mothur.git] / errorchecking.h
1 #ifndef ERRORCHECKING_H
2 #define ERRORCHECKING_H
3 /*
4  *  errorchecking.h
5  *  Dotur
6  *
7  *  Created by Sarah Westcott on 1/2/09.
8  *  Copyright 2009 Schloss Lab UMASS Amherst. All rights reserved.
9  *
10  */
11
12 #include "mothur.h"
13 #include "globaldata.hpp"
14 #include "validcommands.h"
15 #include "validparameter.h"
16 #include "utilities.hpp"
17
18 class ErrorCheck {
19         public:
20                 ErrorCheck();
21                 ~ErrorCheck();
22                 bool checkInput(string);
23         
24         private: 
25                 GlobalData* globaldata;
26                 ValidCommands* validCommand;
27                 ValidParameters* validParameter;
28                 void validateReadFiles();
29                 void validateReadDist();
30                 void validateReadPhil();
31                 void validateParseFiles();
32                 void validateTreeFiles();
33                 void validateBinFiles();
34                 void clear();
35                 void refresh();
36                 string phylipfile, columnfile, listfile, rabundfile, sabundfile, namefile, groupfile, orderfile, fastafile, treefile, sharedfile, cutoff, format; 
37                 string precision, method, fileroot, label, line, iters, jumble, freq, single, rarefaction, shared, summary, randomtree, abund, sorted;
38                 string commandName, optionText;
39                 bool errorFree;
40
41                 vector<string> sharedGroups;
42 };
43 #endif