]> git.donarmstrong.com Git - mothur.git/blob - validparameter.h
fixes while testing 1.33.0
[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
13 #include "mothur.h"
14 #include "mothurout.h"
15
16 //This class contains a list of all valid parameters in Mothur.  
17 //It has a function which will tell you if your parameter is valid.
18 //When adding a new parameter you must add it to the valid list in the class constructor.
19
20
21 class ValidParameters {
22
23         public:
24                 ValidParameters();
25                 ValidParameters(string);
26                 ~ValidParameters();
27                 //bool isValidParameter(string, string, string) {return true;}
28                 bool isValidParameter(string, vector<string>, string);
29                 vector <string> addParameters(string[], int);
30                 void initParameterRanges();
31                 string validFile(map<string, string>&, string, bool); //container, parameter, isFile, commandName
32
33         private:
34                 map<string, string>::iterator it;
35                 map<string, vector<string> > parameterRanges;
36                 MothurOut* m;
37                 string commandName;
38
39 };
40
41 #endif