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