]> git.donarmstrong.com Git - mothur.git/blob - validcommands.cpp
bc9f62c089bdfdded2181dcb53be18e7d37e71c4
[mothur.git] / validcommands.cpp
1 /*
2  *  validcommands.cpp
3  *  Dotur
4  *
5  *  Created by Sarah Westcott on 1/5/09.
6  *  Copyright 2009 Schloss Lab UMASS Amherst. All rights reserved.
7  *
8  */
9
10 #include "validcommands.h"
11
12 /***********************************************************************/
13
14 ValidCommands::ValidCommands() {
15         try {
16         
17                 commands["read.dist"]                   = "read.dist"; 
18                 commands["read.otu"]                    = "read.otu";
19                 commands["read.tree"]                   = "read.tree"; 
20                 commands["bin.seqs"]                    = "bin.seqs"; 
21                 commands["get.oturep"]                  = "get.oturep";
22                 commands["cluster"]                             = "cluster"; 
23                 commands["deconvolute"]                 = "deconvolute"; 
24                 commands["collect.single"]              = "collect.single"; 
25                 commands["collect.shared"]              = "collect.shared"; 
26                 commands["rarefaction.single"]  = "rarefaction.single"; 
27                 commands["rarefaction.shared"]  = "rarefaction.shared"; 
28                 commands["summary.single"]              = "summary.single"; 
29                 commands["summary.shared"]              = "summary.shared"; 
30                 commands["parsimony"]                   = "parsimony";
31                 commands["unifrac.weighted"]    = "unifrac.weighted"; 
32                 commands["unifrac.unweighted"]  = "unifrac.unweighted"; 
33                 commands["libshuff"]                    = "libshuff";
34                 commands["tree.groups"]                 = "tree.groups";
35                 commands["heatmap"]                             = "heatmap";
36                 commands["venn"]                                = "venn";
37                 commands["get.group"]           = "get.group";
38                 commands["get.label"]           = "get.label";
39                 commands["get.line"]            = "get.line";
40                 commands["help"]                                = "help"; 
41                 commands["quit"]                                = "quit"; 
42
43                                 
44         }
45         catch(exception& e) {
46                 cout << "Standard Error: " << e.what() << " has occurred in the ValidCommands class Function ValidCommands. Please contact Pat Schloss at pschloss@microbio.umass.edu." << "\n";
47                 exit(1);
48         }
49         catch(...) {
50                 cout << "An unknown error has occurred in the ValidCommands class function ValidCommands. Please contact Pat Schloss at pschloss@microbio.umass.edu." << "\n";
51                 exit(1);
52         }       
53 }
54
55 /***********************************************************************/
56
57 ValidCommands::~ValidCommands() {}
58
59 /***********************************************************************/
60 bool ValidCommands::isValidCommand(string command) {
61         try {   
62         
63                 //is the command in the map
64                 if ((commands.find(command)) != (commands.end())) {
65                         return true;
66                 }else{
67                         cout << command << " is not a valid command in Mothur.  Valid commands are ";
68                         for (it = commands.begin(); it != commands.end(); it++) {
69                                 cout << it->first << ", ";
70                         }
71                         cout << endl;
72                         return false;
73                 }
74                 
75         }
76         catch(exception& e) {
77                 cout << "Standard Error: " << e.what() << " has occurred in the ValidCommands class Function isValidCommand. Please contact Pat Schloss at pschloss@microbio.umass.edu." << "\n";
78                 exit(1);
79         }
80         catch(...) {
81                 cout << "An unknown error has occurred in the ValidCommands class function isValidCommand. Please contact Pat Schloss at pschloss@microbio.umass.edu." << "\n";
82                 exit(1);
83         }
84 }
85
86 /***********************************************************************/
87 void ValidCommands::printCommands(ostream& out) {
88         try {   
89                 out << "Valid commands are ";
90                 for (it = commands.begin(); it != commands.end(); it++) {
91                         out << it->first << ", ";
92                 }
93                 out << endl;
94         }
95         catch(exception& e) {
96                 cout << "Standard Error: " << e.what() << " has occurred in the ValidCommands class Function printCommands. Please contact Pat Schloss at pschloss@microbio.umass.edu." << "\n";
97                 exit(1);
98         }
99         catch(...) {
100                 cout << "An unknown error has occurred in the ValidCommands class function printCommands. Please contact Pat Schloss at pschloss@microbio.umass.edu." << "\n";
101                 exit(1);
102         }
103 }
104
105
106
107