]> git.donarmstrong.com Git - mothur.git/blob - validparameter.h
added the Calculators Thomas made in the fall. Added parameter and command error...
[mothur.git] / validparameter.h
1 #ifndef VALIDPARAMETERS_H
2 #define VALIDPARAMETERS_H
3
4 /*
5  *  validparameter.h
6  *  Dotur
7  *
8  *  Created by Sarah Westcott on 1/5/09.
9  *  Copyright 2009 Schloss Lab UMASS Amherst. All rights reserved.
10  *
11  */
12 using namespace std;
13
14 #include "mothur.h"
15 #include "utilities.hpp"
16
17 //This class contains a list of all valid parameters in Mothur.  
18 //It has a function which will tell you if your parameter is valid.
19 //When adding a new parameter you must add it to the valid list in the class constructor.
20
21
22 class ValidParameters {
23
24         public:
25                 ValidParameters();
26                 ~ValidParameters();
27                 bool isValidParameter(string);
28                 bool isValidParameter(string, string, string);
29                 vector <string> addParameters(string[], int);
30                 void initCommandParameters();
31                 void initParameterRanges();
32
33         private:
34                 map<string, string> readdist;
35                 map<string, string> readotu;
36                 map<string, string> readtree;
37                 map<string, string> cluster;
38                 map<string, string> deconvolute;
39                 map<string, string> parsimony;
40                 map<string, string> collectsingle;
41                 map<string, string> collectshared;
42                 map<string, string> rarefactsingle;
43                 map<string, string> rarefactshared;
44                 map<string, string> summarysingle;
45                 map<string, string> summaryshared;
46                 map<string, string> unifracweighted;
47                 map<string, string> unifracunweighted;
48                 map<string, string> libshuff;
49                 map<string, string> heatmap;
50                 
51                 map<string, string>::iterator it;
52                 map<string, vector<string> > commandParameters;
53                 map<string, vector<string> > parameterRanges;
54
55 };
56
57 #endif