]> git.donarmstrong.com Git - mothur.git/blob - commandfactory.cpp
started work on classify.seqs command. changed the database class so that it does...
[mothur.git] / commandfactory.cpp
1 /*
2  *  commandfactory.cpp
3  *  
4  *
5  *  Created by Pat Schloss on 10/25/08.
6  *  Copyright 2008 Patrick D. Schloss. All rights reserved.
7  *
8  */
9
10 #include "command.hpp"
11 #include "readdistcommand.h"
12 #include "readtreecommand.h"
13 #include "readotucommand.h"
14 #include "clustercommand.h"
15 #include "collectcommand.h"
16 #include "collectsharedcommand.h"
17 #include "getgroupcommand.h"
18 #include "getlabelcommand.h"
19 #include "getlinecommand.h"
20 #include "rarefactcommand.h"
21 #include "summarycommand.h"
22 #include "summarysharedcommand.h"
23 #include "rarefactsharedcommand.h"
24 #include "quitcommand.h"
25 #include "helpcommand.h"
26 #include "commandfactory.hpp"
27 #include "deconvolutecommand.h"
28 #include "parsimonycommand.h"
29 #include "unifracunweightedcommand.h"
30 #include "unifracweightedcommand.h"
31 #include "libshuffcommand.h"
32 #include "heatmapcommand.h"
33 #include "heatmapsimcommand.h"
34 #include "filterseqscommand.h"
35 #include "venncommand.h"
36 #include "nocommands.h"
37 #include "binsequencecommand.h"
38 #include "getoturepcommand.h"
39 #include "treegroupscommand.h"
40 #include "bootstrapsharedcommand.h"
41 //#include "consensuscommand.h"
42 #include "distancecommand.h"
43 #include "aligncommand.h"
44 #include "matrixoutputcommand.h"
45 #include "getsabundcommand.h"
46 #include "getrabundcommand.h"
47 #include "seqsummarycommand.h"
48 #include "screenseqscommand.h"
49 #include "reversecommand.h"
50 #include "trimseqscommand.h"
51 #include "mergefilecommand.h"
52 #include "chimeraseqscommand.h"
53 #include "listseqscommand.h"
54 #include "getseqscommand.h"
55 #include "removeseqscommand.h"
56 #include "systemcommand.h"
57 #include "secondarystructurecommand.h"
58 #include "getsharedotucommand.h"
59 #include "getlistcountcommand.h"
60 #include "hclustercommand.h"
61 #include "classifyseqscommand.h"
62
63 /***********************************************************/
64
65 /***********************************************************/
66 CommandFactory::CommandFactory(){
67         string s = "";
68         command = new NoCommand(s);
69         
70         
71         //initialize list of valid commands
72         commands["read.dist"]                   = "read.dist"; 
73         commands["read.otu"]                    = "read.otu";
74         commands["read.tree"]                   = "read.tree"; 
75         commands["bin.seqs"]                    = "bin.seqs"; 
76         commands["get.oturep"]                  = "get.oturep";
77         commands["cluster"]                             = "cluster"; 
78         commands["unique.seqs"]                 = "unique.seqs"; 
79         commands["dist.seqs"]                   = "dist.seqs";
80         commands["dist.shared"]                 = "dist.shared";
81         commands["collect.single"]              = "collect.single"; 
82         commands["collect.shared"]              = "collect.shared"; 
83         commands["rarefaction.single"]  = "rarefaction.single"; 
84         commands["rarefaction.shared"]  = "rarefaction.shared"; 
85         commands["summary.single"]              = "summary.single"; 
86         commands["summary.shared"]              = "summary.shared"; 
87         commands["parsimony"]                   = "parsimony";
88         commands["unifrac.weighted"]    = "unifrac.weighted"; 
89         commands["unifrac.unweighted"]  = "unifrac.unweighted"; 
90         commands["libshuff"]                    = "libshuff";
91         commands["tree.shared"]                 = "tree.shared";
92         commands["heatmap.bin"]                 = "heatmap.bin";
93         commands["heatmap.sim"]                 = "heatmap.sim";
94         commands["venn"]                                = "venn";
95         commands["get.group"]           = "get.group";
96         commands["get.label"]           = "get.label";
97         commands["get.line"]            = "get.line";
98         commands["get.sabund"]          = "get.sabund";
99         commands["get.rabund"]          = "get.rabund";
100         commands["bootstrap.shared"]    = "bootstrap.shared";
101         //commands["consensus"]                 = "consensus";
102         commands["help"]                                = "help"; 
103         commands["filter.seqs"]                 = "filter.seqs";
104         commands["align.seqs"]                  = "align.seqs";
105         commands["summary.seqs"]                = "summary.seqs";
106         commands["screen.seqs"]                 = "screen.seqs";
107         commands["reverse.seqs"]                = "reverse.seqs";
108         commands["trim.seqs"]                   = "trim.seqs";
109         commands["chimera.seqs"]                = "chimera.seqs";
110         commands["list.seqs"]                   = "list.seqs";
111         commands["get.seqs"]                    = "get.seqs";
112         commands["remove.seqs"]                 = "get.seqs";
113         commands["system"]                              = "system";
114         commands["align.check"]                 = "align.check";
115         commands["get.sharedotu"]               = "get.sharedotu";
116         commands["get.listcount"]               = "get.listcount";
117         commands["quit"]                                = "quit"; 
118         commands["hcluster"]                    = "hcluster"; 
119         commands["classify.seqs"]               = "classify.seqs"; 
120
121 }
122 /***********************************************************/
123
124 /***********************************************************/
125 CommandFactory::~CommandFactory(){
126         delete command;
127 }
128
129 /***********************************************************/
130
131 /***********************************************************/
132 //This function calls the appropriate command fucntions based on user input.
133 Command* CommandFactory::getCommand(string commandName, string optionString){
134         try {
135                 delete command;   //delete the old command
136
137                 if(commandName == "read.dist")                                  {       command = new ReadDistCommand(optionString);                    }
138                 else if(commandName == "read.otu")                              {       command = new ReadOtuCommand(optionString);                             }
139                 else if(commandName == "read.tree")                             {       command = new ReadTreeCommand(optionString);                    }
140                 else if(commandName == "cluster")                               {       command = new ClusterCommand(optionString);                             }
141                 else if(commandName == "unique.seqs")                   {       command = new DeconvoluteCommand(optionString);                 }
142                 else if(commandName == "parsimony")                             {       command = new ParsimonyCommand(optionString);                   }
143                 else if(commandName == "help")                                  {       command = new HelpCommand(optionString);                                }
144                 else if(commandName == "quit")                                  {       command = new QuitCommand(optionString);                                }
145                 else if(commandName == "collect.single")                {       command = new CollectCommand(optionString);                             }
146                 else if(commandName == "collect.shared")                {       command = new CollectSharedCommand(optionString);               }
147                 else if(commandName == "rarefaction.single")    {       command = new RareFactCommand(optionString);                    }
148                 else if(commandName == "rarefaction.shared")    {       command = new RareFactSharedCommand(optionString);              }
149                 else if(commandName == "summary.single")                {       command = new SummaryCommand(optionString);                             }
150                 else if(commandName == "summary.shared")                {       command = new SummarySharedCommand(optionString);               }
151                 else if(commandName == "unifrac.weighted")              {       command = new UnifracWeightedCommand(optionString);             }
152                 else if(commandName == "unifrac.unweighted")    {       command = new UnifracUnweightedCommand(optionString);   }
153                 else if(commandName == "get.group")             {   command = new GetgroupCommand(optionString);                        }
154                 else if(commandName == "get.label")             {   command = new GetlabelCommand(optionString);                        }
155                 else if(commandName == "get.line")              {   command = new GetlineCommand(optionString);                         }
156                 else if(commandName == "get.sabund")            {   command = new GetSAbundCommand(optionString);                       }
157                 else if(commandName == "get.rabund")            {   command = new GetRAbundCommand(optionString);                       }
158                 else if(commandName == "libshuff")              {   command = new LibShuffCommand(optionString);                        }
159                 else if(commandName == "heatmap.bin")                   {   command = new HeatMapCommand(optionString);                         }
160                 else if(commandName == "heatmap.sim")                   {   command = new HeatMapSimCommand(optionString);                      }
161                 else if(commandName == "filter.seqs")                   {   command = new FilterSeqsCommand(optionString);                      }
162                 else if(commandName == "venn")                                  {   command = new VennCommand(optionString);                            }
163                 else if(commandName == "bin.seqs")                              {   command = new BinSeqCommand(optionString);                          }
164                 else if(commandName == "get.oturep")                    {   command = new GetOTURepCommand(optionString);                       }
165                 else if(commandName == "tree.shared")                   {   command = new TreeGroupCommand(optionString);                       }
166                 else if(commandName == "dist.shared")                   {   command = new MatrixOutputCommand(optionString);            }
167                 else if(commandName == "bootstrap.shared")              {   command = new BootSharedCommand(optionString);                      }
168                 //else if(commandName == "consensus")                   {   command = new ConcensusCommand(optionString);                       }
169                 else if(commandName == "dist.seqs")                             {   command = new DistanceCommand(optionString);                        }
170                 else if(commandName == "align.seqs")                    {   command = new AlignCommand(optionString);                           }
171                 else if(commandName == "summary.seqs")                  {       command = new SeqSummaryCommand(optionString);                  }
172                 else if(commandName == "screen.seqs")                   {       command = new ScreenSeqsCommand(optionString);                  }
173                 else if(commandName == "reverse.seqs")                  {       command = new ReverseSeqsCommand(optionString);                 }
174                 else if(commandName == "trim.seqs")                             {       command = new TrimSeqsCommand(optionString);                    }
175                 else if(commandName == "chimera.seqs")                  {       command = new ChimeraSeqsCommand(optionString);                 }
176                 else if(commandName == "list.seqs")                             {       command = new ListSeqsCommand(optionString);                    }
177                 else if(commandName == "get.seqs")                              {       command = new GetSeqsCommand(optionString);                             }
178                 else if(commandName == "remove.seqs")                   {       command = new RemoveSeqsCommand(optionString);                  }
179                 else if(commandName == "merge.files")                   {       command = new MergeFileCommand(optionString);                   }
180                 else if(commandName == "system")                                {       command = new SystemCommand(optionString);                              }
181                 else if(commandName == "align.check")                   {       command = new AlignCheckCommand(optionString);                  }
182                 else if(commandName == "get.sharedotu")                 {       command = new GetSharedOTUCommand(optionString);                }
183                 else if(commandName == "get.listcount")                 {       command = new GetListCountCommand(optionString);                }
184                 else if(commandName == "hcluster")                              {       command = new HClusterCommand(optionString);                    }
185                 else if(commandName == "classify.seqs")                 {       command = new ClassifySeqsCommand(optionString);                }
186                 else                                                                                    {       command = new NoCommand(optionString);                                  }
187
188                 return command;
189         }
190         catch(exception& e) {
191                 errorOut(e, "CommandFactory", "getCommand");
192                 exit(1);
193         }
194 }
195
196 /***********************************************************************/
197 bool CommandFactory::isValidCommand(string command) {
198         try {   
199         
200                 //is the command in the map
201                 if ((commands.find(command)) != (commands.end())) {
202                         return true;
203                 }else{
204                         mothurOut(command + " is not a valid command in Mothur.  Valid commands are ");
205                         for (it = commands.begin(); it != commands.end(); it++) {
206                                 mothurOut(it->first + ", ");
207                         }
208                         mothurOutEndLine();
209                         return false;
210                 }
211                 
212         }
213         catch(exception& e) {
214                 errorOut(e, "CommandFactory", "isValidCommand");
215                 exit(1);
216         }
217 }
218
219 /***********************************************************************/
220 void CommandFactory::printCommands(ostream& out) {
221         try {   
222                 out << "Valid commands are ";
223                 for (it = commands.begin(); it != commands.end(); it++) {
224                         out << it->first << ", ";
225                 }
226                 out << endl;
227         }
228         catch(exception& e) {
229                 errorOut(e, "CommandFactory", "printCommands");
230                 exit(1);
231         }
232 }
233 /***********************************************************************/
234
235
236
237