]> git.donarmstrong.com Git - mothur.git/blob - validcommands.cpp
696214e236be1b44cfc63335ee9caecc96249ea8
[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.shared"]                 = "tree.shared";
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["bootstrap.shared"]    = "bootstrap.shared";
41                 commands["help"]                                = "help"; 
42                 commands["quit"]                                = "quit"; 
43
44                                 
45         }
46         catch(exception& e) {
47                 cout << "Standard Error: " << e.what() << " has occurred in the ValidCommands class Function ValidCommands. Please contact Pat Schloss at pschloss@microbio.umass.edu." << "\n";
48                 exit(1);
49         }
50         catch(...) {
51                 cout << "An unknown error has occurred in the ValidCommands class function ValidCommands. Please contact Pat Schloss at pschloss@microbio.umass.edu." << "\n";
52                 exit(1);
53         }       
54 }
55
56 /***********************************************************************/
57
58 ValidCommands::~ValidCommands() {}
59
60 /***********************************************************************/
61 bool ValidCommands::isValidCommand(string command) {
62         try {   
63         
64                 //is the command in the map
65                 if ((commands.find(command)) != (commands.end())) {
66                         return true;
67                 }else{
68                         cout << command << " is not a valid command in Mothur.  Valid commands are ";
69                         for (it = commands.begin(); it != commands.end(); it++) {
70                                 cout << it->first << ", ";
71                         }
72                         cout << endl;
73                         return false;
74                 }
75                 
76         }
77         catch(exception& e) {
78                 cout << "Standard Error: " << e.what() << " has occurred in the ValidCommands class Function isValidCommand. Please contact Pat Schloss at pschloss@microbio.umass.edu." << "\n";
79                 exit(1);
80         }
81         catch(...) {
82                 cout << "An unknown error has occurred in the ValidCommands class function isValidCommand. Please contact Pat Schloss at pschloss@microbio.umass.edu." << "\n";
83                 exit(1);
84         }
85 }
86
87 /***********************************************************************/
88 void ValidCommands::printCommands(ostream& out) {
89         try {   
90                 out << "Valid commands are ";
91                 for (it = commands.begin(); it != commands.end(); it++) {
92                         out << it->first << ", ";
93                 }
94                 out << endl;
95         }
96         catch(exception& e) {
97                 cout << "Standard Error: " << e.what() << " has occurred in the ValidCommands class Function printCommands. Please contact Pat Schloss at pschloss@microbio.umass.edu." << "\n";
98                 exit(1);
99         }
100         catch(...) {
101                 cout << "An unknown error has occurred in the ValidCommands class function printCommands. Please contact Pat Schloss at pschloss@microbio.umass.edu." << "\n";
102                 exit(1);
103         }
104 }
105
106
107
108