]> git.donarmstrong.com Git - mothur.git/blob - commandfactory.cpp
added consensus.seqs command
[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 "rarefactcommand.h"
20 #include "summarycommand.h"
21 #include "summarysharedcommand.h"
22 #include "rarefactsharedcommand.h"
23 #include "quitcommand.h"
24 #include "helpcommand.h"
25 #include "commandfactory.hpp"
26 #include "deconvolutecommand.h"
27 #include "parsimonycommand.h"
28 #include "unifracunweightedcommand.h"
29 #include "unifracweightedcommand.h"
30 #include "libshuffcommand.h"
31 #include "heatmapcommand.h"
32 #include "heatmapsimcommand.h"
33 #include "filterseqscommand.h"
34 #include "venncommand.h"
35 #include "nocommands.h"
36 #include "binsequencecommand.h"
37 #include "getoturepcommand.h"
38 #include "treegroupscommand.h"
39 #include "bootstrapsharedcommand.h"
40 //#include "consensuscommand.h"
41 #include "distancecommand.h"
42 #include "aligncommand.h"
43 #include "matrixoutputcommand.h"
44 #include "getsabundcommand.h"
45 #include "getrabundcommand.h"
46 #include "seqsummarycommand.h"
47 #include "screenseqscommand.h"
48 #include "reversecommand.h"
49 #include "trimseqscommand.h"
50 #include "mergefilecommand.h"
51 #include "chimeraseqscommand.h"
52 #include "listseqscommand.h"
53 #include "getseqscommand.h"
54 #include "removeseqscommand.h"
55 #include "systemcommand.h"
56 #include "secondarystructurecommand.h"
57 #include "getsharedotucommand.h"
58 #include "getlistcountcommand.h"
59 #include "hclustercommand.h"
60 #include "classifyseqscommand.h"
61 #include "phylotypecommand.h"
62 #include "mgclustercommand.h"
63 #include "preclustercommand.h"
64 #include "pcacommand.h"
65 #include "otuhierarchycommand.h"
66 #include "setdircommand.h"
67 #include "parselistscommand.h"
68 #include "parsesffcommand.h"
69 #include "chimeraccodecommand.h"
70 #include "chimeracheckcommand.h"
71 #include "chimeraslayercommand.h"
72 #include "chimerapintailcommand.h"
73 #include "chimerabellerophoncommand.h"
74 #include "setlogfilecommand.h"
75 #include "phylodiversitycommand.h"
76 #include "makegroupcommand.h"
77 #include "chopseqscommand.h"
78 #include "clearcutcommand.h"
79 #include "catchallcommand.h"
80 #include "splitabundcommand.h"
81 #include "clustersplitcommand.h"
82 #include "classifyotucommand.h"
83 #include "degapseqscommand.h"
84 #include "getrelabundcommand.h"
85 #include "sensspeccommand.h"
86 #include "sffinfocommand.h"
87 #include "seqerrorcommand.h"
88 #include "normalizesharedcommand.h"
89 #include "metastatscommand.h"
90 #include "splitgroupscommand.h"
91 #include "clusterfragmentscommand.h"
92 #include "getlineagecommand.h"
93 #include "removelineagecommand.h"
94 #include "parsefastaqcommand.h"
95 #include "pipelinepdscommand.h"
96 #include "deuniqueseqscommand.h"
97 #include "pairwiseseqscommand.h"
98 #include "clusterdoturcommand.h"
99 #include "subsamplecommand.h"
100 #include "removegroupscommand.h"
101 #include "getgroupscommand.h"
102 #include "getotuscommand.h"
103 #include "removeotuscommand.h"
104 #include "indicatorcommand.h"
105 #include "consensusseqscommand.h"
106
107 /*******************************************************/
108
109 /******************************************************/
110 CommandFactory* CommandFactory::getInstance() {
111         if( _uniqueInstance == 0) {
112                 _uniqueInstance = new CommandFactory();
113         }
114         return _uniqueInstance;
115 }
116 /***********************************************************/
117
118 /***********************************************************/
119 //note: This class is resposible for knowing which commands are mpiEnabled,
120 //If a command is not enabled only process 0 will execute the command. 
121 //This avoids redundant outputs on pieces of code we have not paralellized. 
122 //If you add mpi code to a existing command you need to modify the list below or the code will hang on MPI blocking commands like FIle_open. 
123 //example:  commands["dist.seqs"] = "MPIEnabled";
124
125 CommandFactory::CommandFactory(){
126         string s = "";
127         m = MothurOut::getInstance();
128         
129         command = new NoCommand(s);
130         shellcommand = new NoCommand(s);
131         pipecommand = new NoCommand(s);
132         
133         outputDir = ""; inputDir = "";
134         logFileName = "";
135         append = false;
136         
137         //initialize list of valid commands
138         commands["read.dist"]                   = "read.dist"; 
139         commands["read.otu"]                    = "read.otu";
140         commands["read.tree"]                   = "read.tree"; 
141         commands["bin.seqs"]                    = "bin.seqs"; 
142         commands["get.oturep"]                  = "get.oturep";
143         commands["cluster"]                             = "cluster"; 
144         commands["unique.seqs"]                 = "unique.seqs"; 
145         commands["dist.shared"]                 = "dist.shared";
146         commands["collect.single"]              = "collect.single"; 
147         commands["collect.shared"]              = "collect.shared"; 
148         commands["rarefaction.single"]  = "rarefaction.single"; 
149         commands["rarefaction.shared"]  = "rarefaction.shared"; 
150         commands["summary.single"]              = "summary.single"; 
151         commands["summary.shared"]              = "summary.shared"; 
152         commands["parsimony"]                   = "parsimony";
153         commands["unifrac.weighted"]    = "unifrac.weighted"; 
154         commands["unifrac.unweighted"]  = "unifrac.unweighted"; 
155         commands["libshuff"]                    = "libshuff";
156         commands["tree.shared"]                 = "tree.shared";
157         commands["heatmap.bin"]                 = "heatmap.bin";
158         commands["heatmap.sim"]                 = "heatmap.sim";
159         commands["venn"]                                = "venn";
160         commands["get.group"]           = "get.group";
161         commands["get.label"]           = "get.label";
162         commands["get.sabund"]          = "get.sabund";
163         commands["get.rabund"]          = "get.rabund";
164         commands["bootstrap.shared"]    = "bootstrap.shared";
165         //commands["consensus"]                 = "consensus";
166         commands["help"]                                = "help";
167         commands["reverse.seqs"]                = "reverse.seqs";
168         commands["trim.seqs"]                   = "trim.seqs";
169         commands["list.seqs"]                   = "list.seqs";
170         commands["get.seqs"]                    = "get.seqs";
171         commands["remove.seqs"]                 = "get.seqs";
172         commands["system"]                              = "system";
173         commands["align.check"]                 = "align.check";
174         commands["get.sharedseqs"]              = "get.sharedseqs";
175         commands["get.otulist"]                 = "get.otulist";
176         commands["hcluster"]                    = "hcluster"; 
177         commands["phylotype"]                   = "phylotype";
178         commands["mgcluster"]                   = "mgcluster";
179         commands["pre.cluster"]                 = "pre.cluster";
180         commands["pcoa"]                                = "pcoa";
181         commands["otu.hierarchy"]               = "otu.hierarchy";
182         commands["set.dir"]                             = "set.dir";
183         commands["merge.files"]                 = "merge.files";
184         commands["parse.list"]                  = "parse.list";
185         commands["parse.sff"]                   = "parse.sff";
186         commands["set.logfile"]                 = "set.logfile";
187         commands["phylo.diversity"]             = "phylo.diversity";
188         commands["make.group"]                  = "make.group";
189         commands["chop.seqs"]                   = "chop.seqs";
190         commands["clearcut"]                    = "clearcut";
191         commands["catchall"]                    = "catchall";
192         commands["split.abund"]                 = "split.abund";
193         commands["classify.otu"]                = "classify.otu";
194         commands["degap.seqs"]                  = "degap.seqs";
195         commands["get.relabund"]                = "get.relabund";
196         commands["sffinfo"]                             = "sffinfo";
197         commands["normalize.shared"]    = "normalize.shared";
198         commands["metastats"]                   = "metastats";
199         commands["split.groups"]                = "split.groups";
200         commands["cluster.fragments"]   = "cluster.fragments";
201         commands["get.lineage"]                 = "get.lineage";
202         commands["remove.lineage"]              = "remove.lineage";
203         commands["fastq.info"]                  = "fastq.info";
204         commands["deunique.seqs"]               = "deunique.seqs";
205         commands["cluster.classic"]             = "cluster.classic";
206         commands["sub.sample"]                  = "sub.sample";
207         commands["remove.groups"]               = "remove.groups";
208         commands["get.groups"]                  = "get.groups";
209         commands["get.otus"]                    = "get.otus";
210         commands["remove.otus"]                 = "remove.otus";
211         commands["indicator"]                   = "indicator";
212         commands["consensus.seqs"]              = "consensus.seqs";
213         commands["pairwise.seqs"]               = "MPIEnabled";
214         commands["pipeline.pds"]                = "MPIEnabled";
215         commands["classify.seqs"]               = "MPIEnabled"; 
216         commands["dist.seqs"]                   = "MPIEnabled";
217         commands["filter.seqs"]                 = "MPIEnabled";
218         commands["align.seqs"]                  = "MPIEnabled";
219         commands["chimera.seqs"]                = "chimera.seqs";
220         commands["chimera.ccode"]               = "MPIEnabled";
221         commands["chimera.check"]               = "MPIEnabled";
222         commands["chimera.slayer"]              = "MPIEnabled";
223         commands["chimera.pintail"]             = "MPIEnabled";
224         commands["chimera.bellerophon"] = "MPIEnabled";
225         commands["screen.seqs"]                 = "MPIEnabled";
226         commands["summary.seqs"]                = "MPIEnabled";
227         commands["cluster.split"]               = "MPIEnabled";
228         commands["sens.spec"]                   = "sens.spec";
229         commands["seq.error"]                   = "seq.error";
230         commands["quit"]                                = "MPIEnabled"; 
231
232 }
233 /***********************************************************/
234
235 /***********************************************************/
236 bool CommandFactory::MPIEnabled(string commandName) {
237         bool mpi = false;
238         it = commands.find(commandName);
239         if (it != commands.end()) { 
240                 if (it->second == "MPIEnabled") { return true; }
241         }
242         return mpi;
243 }
244 /***********************************************************/
245
246 /***********************************************************/
247 CommandFactory::~CommandFactory(){
248         _uniqueInstance = 0;
249         delete command;
250         delete shellcommand;
251         delete pipecommand;
252 }
253
254 /***********************************************************/
255
256 /***********************************************************/
257 //This function calls the appropriate command fucntions based on user input.
258 Command* CommandFactory::getCommand(string commandName, string optionString){
259         try {
260                 delete command;   //delete the old command
261                 
262                 //user has opted to redirect output from dir where input files are located to some other place
263                 if (outputDir != "") { 
264                         if (optionString != "") { optionString += ", outputdir=" + outputDir; }
265                         else { optionString += "outputdir=" + outputDir; }
266                 }
267                 
268                 //user has opted to redirect input from dir where mothur.exe is located to some other place
269                 if (inputDir != "") { 
270                         if (optionString != "") { optionString += ", inputdir=" + inputDir; }
271                         else { optionString += "inputdir=" + inputDir; }
272                 }
273                 
274                 if(commandName == "read.dist")                                  {       command = new ReadDistCommand(optionString);                            }
275                 else if(commandName == "read.otu")                              {       command = new ReadOtuCommand(optionString);                                     }
276                 else if(commandName == "read.tree")                             {       command = new ReadTreeCommand(optionString);                            }
277                 else if(commandName == "cluster")                               {       command = new ClusterCommand(optionString);                                     }
278                 else if(commandName == "unique.seqs")                   {       command = new DeconvoluteCommand(optionString);                         }
279                 else if(commandName == "parsimony")                             {       command = new ParsimonyCommand(optionString);                           }
280                 else if(commandName == "help")                                  {       command = new HelpCommand(optionString);                                        }
281                 else if(commandName == "quit")                                  {       command = new QuitCommand(optionString);                                        }
282                 else if(commandName == "collect.single")                {       command = new CollectCommand(optionString);                                     }
283                 else if(commandName == "collect.shared")                {       command = new CollectSharedCommand(optionString);                       }
284                 else if(commandName == "rarefaction.single")    {       command = new RareFactCommand(optionString);                            }
285                 else if(commandName == "rarefaction.shared")    {       command = new RareFactSharedCommand(optionString);                      }
286                 else if(commandName == "summary.single")                {       command = new SummaryCommand(optionString);                                     }
287                 else if(commandName == "summary.shared")                {       command = new SummarySharedCommand(optionString);                       }
288                 else if(commandName == "unifrac.weighted")              {       command = new UnifracWeightedCommand(optionString);                     }
289                 else if(commandName == "unifrac.unweighted")    {       command = new UnifracUnweightedCommand(optionString);           }
290                 else if(commandName == "get.group")             {   command = new GetgroupCommand(optionString);                                }
291                 else if(commandName == "get.label")             {   command = new GetlabelCommand(optionString);                                }
292                 else if(commandName == "get.sabund")            {   command = new GetSAbundCommand(optionString);                               }
293                 else if(commandName == "get.rabund")            {   command = new GetRAbundCommand(optionString);                               }
294                 else if(commandName == "libshuff")              {   command = new LibShuffCommand(optionString);                                }
295                 else if(commandName == "heatmap.bin")                   {   command = new HeatMapCommand(optionString);                                 }
296                 else if(commandName == "heatmap.sim")                   {   command = new HeatMapSimCommand(optionString);                              }
297                 else if(commandName == "filter.seqs")                   {   command = new FilterSeqsCommand(optionString);                              }
298                 else if(commandName == "venn")                                  {   command = new VennCommand(optionString);                                    }
299                 else if(commandName == "bin.seqs")                              {   command = new BinSeqCommand(optionString);                                  }
300                 else if(commandName == "get.oturep")                    {   command = new GetOTURepCommand(optionString);                               }
301                 else if(commandName == "tree.shared")                   {   command = new TreeGroupCommand(optionString);                               }
302                 else if(commandName == "dist.shared")                   {   command = new MatrixOutputCommand(optionString);                    }
303                 else if(commandName == "bootstrap.shared")              {   command = new BootSharedCommand(optionString);                              }
304                 else if(commandName == "consensus")                             {   command = new ConcensusCommand(optionString);                               }
305                 else if(commandName == "dist.seqs")                             {   command = new DistanceCommand(optionString);                                }
306                 else if(commandName == "align.seqs")                    {   command = new AlignCommand(optionString);                                   }
307                 else if(commandName == "summary.seqs")                  {       command = new SeqSummaryCommand(optionString);                          }
308                 else if(commandName == "screen.seqs")                   {       command = new ScreenSeqsCommand(optionString);                          }
309                 else if(commandName == "reverse.seqs")                  {       command = new ReverseSeqsCommand(optionString);                         }
310                 else if(commandName == "trim.seqs")                             {       command = new TrimSeqsCommand(optionString);                            }
311                 else if(commandName == "chimera.seqs")                  {       command = new ChimeraSeqsCommand(optionString);                         }
312                 else if(commandName == "list.seqs")                             {       command = new ListSeqsCommand(optionString);                            }
313                 else if(commandName == "get.seqs")                              {       command = new GetSeqsCommand(optionString);                                     }
314                 else if(commandName == "remove.seqs")                   {       command = new RemoveSeqsCommand(optionString);                          }
315                 else if(commandName == "merge.files")                   {       command = new MergeFileCommand(optionString);                           }
316                 else if(commandName == "system")                                {       command = new SystemCommand(optionString);                                      }
317                 else if(commandName == "align.check")                   {       command = new AlignCheckCommand(optionString);                          }
318                 else if(commandName == "get.sharedseqs")                {       command = new GetSharedOTUCommand(optionString);                        }
319                 else if(commandName == "get.otulist")                   {       command = new GetListCountCommand(optionString);                        }
320                 else if(commandName == "hcluster")                              {       command = new HClusterCommand(optionString);                            }
321                 else if(commandName == "classify.seqs")                 {       command = new ClassifySeqsCommand(optionString);                        }
322                 else if(commandName == "chimera.ccode")                 {       command = new ChimeraCcodeCommand(optionString);                        }
323                 else if(commandName == "chimera.check")                 {       command = new ChimeraCheckCommand(optionString);                        }
324                 else if(commandName == "chimera.slayer")                {       command = new ChimeraSlayerCommand(optionString);                       }
325                 else if(commandName == "chimera.pintail")               {       command = new ChimeraPintailCommand(optionString);                      }
326                 else if(commandName == "chimera.bellerophon")   {       command = new ChimeraBellerophonCommand(optionString);          }
327                 else if(commandName == "phylotype")                             {       command = new PhylotypeCommand(optionString);                           }
328                 else if(commandName == "mgcluster")                             {       command = new MGClusterCommand(optionString);                           }
329                 else if(commandName == "pre.cluster")                   {       command = new PreClusterCommand(optionString);                          }
330                 else if(commandName == "pcoa")                                  {       command = new PCACommand(optionString);                                         }
331                 else if(commandName == "otu.hierarchy")                 {       command = new OtuHierarchyCommand(optionString);                        }
332                 else if(commandName == "set.dir")                               {       command = new SetDirectoryCommand(optionString);                        }
333                 else if(commandName == "set.logfile")                   {       command = new SetLogFileCommand(optionString);                          }
334                 else if(commandName == "parse.list")                    {       command = new ParseListCommand(optionString);                           }
335                 else if(commandName == "parse.sff")                             {       command = new ParseSFFCommand(optionString);                            }
336                 else if(commandName == "phylo.diversity")               {       command = new PhyloDiversityCommand(optionString);                      }
337                 else if(commandName == "make.group")                    {       command = new MakeGroupCommand(optionString);                           }
338                 else if(commandName == "chop.seqs")                             {       command = new ChopSeqsCommand(optionString);                            }
339                 else if(commandName == "clearcut")                              {       command = new ClearcutCommand(optionString);                            }
340                 else if(commandName == "catchall")                              {       command = new CatchAllCommand(optionString);                            }
341                 else if(commandName == "split.abund")                   {       command = new SplitAbundCommand(optionString);                          }
342                 else if(commandName == "cluster.split")                 {       command = new ClusterSplitCommand(optionString);                        }
343                 else if(commandName == "classify.otu")                  {       command = new ClassifyOtuCommand(optionString);                         }
344                 else if(commandName == "degap.seqs")                    {       command = new DegapSeqsCommand(optionString);                           }
345                 else if(commandName == "get.relabund")                  {       command = new GetRelAbundCommand(optionString);                         }
346                 else if(commandName == "sens.spec")                             {       command = new SensSpecCommand(optionString);                            }
347                 else if(commandName == "seq.error")                             {       command = new SeqErrorCommand(optionString);                            }
348                 else if(commandName == "sffinfo")                               {       command = new SffInfoCommand(optionString);                                     }
349                 else if(commandName == "normalize.shared")              {       command = new NormalizeSharedCommand(optionString);                     }
350                 else if(commandName == "metastats")                             {       command = new MetaStatsCommand(optionString);                           }
351                 else if(commandName == "split.groups")                  {       command = new SplitGroupCommand(optionString);                          }
352                 else if(commandName == "cluster.fragments")             {       command = new ClusterFragmentsCommand(optionString);            }
353                 else if(commandName == "get.lineage")                   {       command = new GetLineageCommand(optionString);                          }
354                 else if(commandName == "remove.lineage")                {       command = new RemoveLineageCommand(optionString);                       }
355                 else if(commandName == "get.groups")                    {       command = new GetGroupsCommand(optionString);                           }
356                 else if(commandName == "remove.groups")                 {       command = new RemoveGroupsCommand(optionString);                        }
357                 else if(commandName == "get.otus")                              {       command = new GetOtusCommand(optionString);                                     }
358                 else if(commandName == "remove.otus")                   {       command = new RemoveOtusCommand(optionString);                          }
359                 else if(commandName == "fastq.info")                    {       command = new ParseFastaQCommand(optionString);                         }
360                 else if(commandName == "pipeline.pds")                  {       command = new PipelineCommand(optionString);                            }
361                 else if(commandName == "deunique.seqs")                 {       command = new DeUniqueSeqsCommand(optionString);                        }
362                 else if(commandName == "pairwise.seqs")                 {       command = new PairwiseSeqsCommand(optionString);                        }
363                 else if(commandName == "cluster.classic")               {       command = new ClusterDoturCommand(optionString);                        }
364                 else if(commandName == "sub.sample")                    {       command = new SubSampleCommand(optionString);                           }
365                 else if(commandName == "indicator")                             {       command = new IndicatorCommand(optionString);                           }
366                 else if(commandName == "consensus.seqs")                {       command = new ConsensusSeqsCommand(optionString);                       }
367                 else                                                                                    {       command = new NoCommand(optionString);                                          }
368
369                 return command;
370         }
371         catch(exception& e) {
372                 m->errorOut(e, "CommandFactory", "getCommand");
373                 exit(1);
374         }
375 }
376 /***********************************************************/
377
378 /***********************************************************/
379 //This function calls the appropriate command fucntions based on user input.
380 Command* CommandFactory::getCommand(string commandName, string optionString, string mode){
381         try {
382                 delete pipecommand;   //delete the old command
383                 
384                 //user has opted to redirect output from dir where input files are located to some other place
385                 if (outputDir != "") { 
386                         if (optionString != "") { optionString += ", outputdir=" + outputDir; }
387                         else { optionString += "outputdir=" + outputDir; }
388                 }
389                 
390                 //user has opted to redirect input from dir where mothur.exe is located to some other place
391                 if (inputDir != "") { 
392                         if (optionString != "") { optionString += ", inputdir=" + inputDir; }
393                         else { optionString += "inputdir=" + inputDir; }
394                 }
395                 
396                 if(commandName == "read.dist")                                  {       pipecommand = new ReadDistCommand(optionString);                                }
397                 else if(commandName == "read.otu")                              {       pipecommand = new ReadOtuCommand(optionString);                                 }
398                 else if(commandName == "read.tree")                             {       pipecommand = new ReadTreeCommand(optionString);                                }
399                 else if(commandName == "cluster")                               {       pipecommand = new ClusterCommand(optionString);                                 }
400                 else if(commandName == "unique.seqs")                   {       pipecommand = new DeconvoluteCommand(optionString);                             }
401                 else if(commandName == "parsimony")                             {       pipecommand = new ParsimonyCommand(optionString);                               }
402                 else if(commandName == "help")                                  {       pipecommand = new HelpCommand(optionString);                                    }
403                 else if(commandName == "quit")                                  {       pipecommand = new QuitCommand(optionString);                                    }
404                 else if(commandName == "collect.single")                {       pipecommand = new CollectCommand(optionString);                                 }
405                 else if(commandName == "collect.shared")                {       pipecommand = new CollectSharedCommand(optionString);                   }
406                 else if(commandName == "rarefaction.single")    {       pipecommand = new RareFactCommand(optionString);                                }
407                 else if(commandName == "rarefaction.shared")    {       pipecommand = new RareFactSharedCommand(optionString);                  }
408                 else if(commandName == "summary.single")                {       pipecommand = new SummaryCommand(optionString);                                 }
409                 else if(commandName == "summary.shared")                {       pipecommand = new SummarySharedCommand(optionString);                   }
410                 else if(commandName == "unifrac.weighted")              {       pipecommand = new UnifracWeightedCommand(optionString);                 }
411                 else if(commandName == "unifrac.unweighted")    {       pipecommand = new UnifracUnweightedCommand(optionString);               }
412                 else if(commandName == "get.group")             {   pipecommand = new GetgroupCommand(optionString);                            }
413                 else if(commandName == "get.label")             {   pipecommand = new GetlabelCommand(optionString);                            }
414                 else if(commandName == "get.sabund")            {   pipecommand = new GetSAbundCommand(optionString);                           }
415                 else if(commandName == "get.rabund")            {   pipecommand = new GetRAbundCommand(optionString);                           }
416                 else if(commandName == "libshuff")              {   pipecommand = new LibShuffCommand(optionString);                            }
417                 else if(commandName == "heatmap.bin")                   {   pipecommand = new HeatMapCommand(optionString);                                     }
418                 else if(commandName == "heatmap.sim")                   {   pipecommand = new HeatMapSimCommand(optionString);                          }
419                 else if(commandName == "filter.seqs")                   {   pipecommand = new FilterSeqsCommand(optionString);                          }
420                 else if(commandName == "venn")                                  {   pipecommand = new VennCommand(optionString);                                        }
421                 else if(commandName == "bin.seqs")                              {   pipecommand = new BinSeqCommand(optionString);                                      }
422                 else if(commandName == "get.oturep")                    {   pipecommand = new GetOTURepCommand(optionString);                           }
423                 else if(commandName == "tree.shared")                   {   pipecommand = new TreeGroupCommand(optionString);                           }
424                 else if(commandName == "dist.shared")                   {   pipecommand = new MatrixOutputCommand(optionString);                        }
425                 else if(commandName == "bootstrap.shared")              {   pipecommand = new BootSharedCommand(optionString);                          }
426                 else if(commandName == "consensus")                             {   pipecommand = new ConcensusCommand(optionString);                           }
427                 else if(commandName == "dist.seqs")                             {   pipecommand = new DistanceCommand(optionString);                            }
428                 else if(commandName == "align.seqs")                    {   pipecommand = new AlignCommand(optionString);                                       }
429                 else if(commandName == "summary.seqs")                  {       pipecommand = new SeqSummaryCommand(optionString);                              }
430                 else if(commandName == "screen.seqs")                   {       pipecommand = new ScreenSeqsCommand(optionString);                              }
431                 else if(commandName == "reverse.seqs")                  {       pipecommand = new ReverseSeqsCommand(optionString);                             }
432                 else if(commandName == "trim.seqs")                             {       pipecommand = new TrimSeqsCommand(optionString);                                }
433                 else if(commandName == "chimera.seqs")                  {       pipecommand = new ChimeraSeqsCommand(optionString);                             }
434                 else if(commandName == "list.seqs")                             {       pipecommand = new ListSeqsCommand(optionString);                                }
435                 else if(commandName == "get.seqs")                              {       pipecommand = new GetSeqsCommand(optionString);                                 }
436                 else if(commandName == "remove.seqs")                   {       pipecommand = new RemoveSeqsCommand(optionString);                              }
437                 else if(commandName == "merge.files")                   {       pipecommand = new MergeFileCommand(optionString);                               }
438                 else if(commandName == "system")                                {       pipecommand = new SystemCommand(optionString);                                  }
439                 else if(commandName == "align.check")                   {       pipecommand = new AlignCheckCommand(optionString);                              }
440                 else if(commandName == "get.sharedseqs")                {       pipecommand = new GetSharedOTUCommand(optionString);                    }
441                 else if(commandName == "get.otulist")                   {       pipecommand = new GetListCountCommand(optionString);                    }
442                 else if(commandName == "hcluster")                              {       pipecommand = new HClusterCommand(optionString);                                }
443                 else if(commandName == "classify.seqs")                 {       pipecommand = new ClassifySeqsCommand(optionString);                    }
444                 else if(commandName == "chimera.ccode")                 {       pipecommand = new ChimeraCcodeCommand(optionString);                    }
445                 else if(commandName == "chimera.check")                 {       pipecommand = new ChimeraCheckCommand(optionString);                    }
446                 else if(commandName == "chimera.slayer")                {       pipecommand = new ChimeraSlayerCommand(optionString);                   }
447                 else if(commandName == "chimera.pintail")               {       pipecommand = new ChimeraPintailCommand(optionString);                  }
448                 else if(commandName == "chimera.bellerophon")   {       pipecommand = new ChimeraBellerophonCommand(optionString);              }
449                 else if(commandName == "phylotype")                             {       pipecommand = new PhylotypeCommand(optionString);                               }
450                 else if(commandName == "mgcluster")                             {       pipecommand = new MGClusterCommand(optionString);                               }
451                 else if(commandName == "pre.cluster")                   {       pipecommand = new PreClusterCommand(optionString);                              }
452                 else if(commandName == "pcoa")                                  {       pipecommand = new PCACommand(optionString);                                             }
453                 else if(commandName == "otu.hierarchy")                 {       pipecommand = new OtuHierarchyCommand(optionString);                    }
454                 else if(commandName == "set.dir")                               {       pipecommand = new SetDirectoryCommand(optionString);                    }
455                 else if(commandName == "set.logfile")                   {       pipecommand = new SetLogFileCommand(optionString);                              }
456                 else if(commandName == "parse.list")                    {       pipecommand = new ParseListCommand(optionString);                               }
457                 else if(commandName == "parse.sff")                             {       pipecommand = new ParseSFFCommand(optionString);                                }
458                 else if(commandName == "phylo.diversity")               {       pipecommand = new PhyloDiversityCommand(optionString);                  }
459                 else if(commandName == "make.group")                    {       pipecommand = new MakeGroupCommand(optionString);                               }
460                 else if(commandName == "chop.seqs")                             {       pipecommand = new ChopSeqsCommand(optionString);                                }
461                 else if(commandName == "clearcut")                              {       pipecommand = new ClearcutCommand(optionString);                                }
462                 else if(commandName == "catchall")                              {       pipecommand = new CatchAllCommand(optionString);                                }
463                 else if(commandName == "split.abund")                   {       pipecommand = new SplitAbundCommand(optionString);                              }
464                 else if(commandName == "cluster.split")                 {       pipecommand = new ClusterSplitCommand(optionString);                    }
465                 else if(commandName == "classify.otu")                  {       pipecommand = new ClassifyOtuCommand(optionString);                             }
466                 else if(commandName == "degap.seqs")                    {       pipecommand = new DegapSeqsCommand(optionString);                               }
467                 else if(commandName == "get.relabund")                  {       pipecommand = new GetRelAbundCommand(optionString);                             }
468                 else if(commandName == "sens.spec")                             {       pipecommand = new SensSpecCommand(optionString);                                }
469                 else if(commandName == "seq.error")                             {       pipecommand = new SeqErrorCommand(optionString);                                }
470                 else if(commandName == "sffinfo")                               {       pipecommand = new SffInfoCommand(optionString);                                 }
471                 else if(commandName == "normalize.shared")              {       pipecommand = new NormalizeSharedCommand(optionString);                 }
472                 else if(commandName == "metastats")                             {       pipecommand = new MetaStatsCommand(optionString);                               }
473                 else if(commandName == "split.groups")                  {       pipecommand = new SplitGroupCommand(optionString);                              }
474                 else if(commandName == "cluster.fragments")             {       pipecommand = new ClusterFragmentsCommand(optionString);                }
475                 else if(commandName == "get.lineage")                   {       pipecommand = new GetLineageCommand(optionString);                              }
476                 else if(commandName == "get.groups")                    {       pipecommand = new GetGroupsCommand(optionString);                               }
477                 else if(commandName == "remove.lineage")                {       pipecommand = new RemoveLineageCommand(optionString);                   }
478                 else if(commandName == "remove.groups")                 {       pipecommand = new RemoveGroupsCommand(optionString);                    }
479                 else if(commandName == "get.otus")                              {       pipecommand = new GetOtusCommand(optionString);                                 }
480                 else if(commandName == "remove.otus")                   {       pipecommand = new RemoveOtusCommand(optionString);                              }
481                 else if(commandName == "fastq.info")                    {       pipecommand = new ParseFastaQCommand(optionString);                             }
482                 else if(commandName == "deunique.seqs")                 {       pipecommand = new DeUniqueSeqsCommand(optionString);                    }
483                 else if(commandName == "pairwise.seqs")                 {       pipecommand = new PairwiseSeqsCommand(optionString);                    }
484                 else if(commandName == "cluster.classic")               {       pipecommand = new ClusterDoturCommand(optionString);                    }
485                 else if(commandName == "sub.sample")                    {       pipecommand = new SubSampleCommand(optionString);                               }
486                 else if(commandName == "indicator")                             {       pipecommand = new IndicatorCommand(optionString);                               }
487                 else if(commandName == "consensus.seqs")                {       pipecommand = new ConsensusSeqsCommand(optionString);                   }
488                 else                                                                                    {       pipecommand = new NoCommand(optionString);                                              }
489
490                 return pipecommand;
491         }
492         catch(exception& e) {
493                 m->errorOut(e, "CommandFactory", "getCommand");
494                 exit(1);
495         }
496 }
497 /***********************************************************/
498
499 /***********************************************************/
500 //This function calls the appropriate command fucntions based on user input, this is used by the pipeline command to check a users piepline for errors before running
501 Command* CommandFactory::getCommand(string commandName){
502         try {
503                 delete shellcommand;   //delete the old command
504                 
505                 if(commandName == "read.dist")                                  {       shellcommand = new ReadDistCommand();                           }
506                 else if(commandName == "read.otu")                              {       shellcommand = new ReadOtuCommand();                            }
507                 else if(commandName == "read.tree")                             {       shellcommand = new ReadTreeCommand();                           }
508                 else if(commandName == "cluster")                               {       shellcommand = new ClusterCommand();                            }
509                 else if(commandName == "unique.seqs")                   {       shellcommand = new DeconvoluteCommand();                        }
510                 else if(commandName == "parsimony")                             {       shellcommand = new ParsimonyCommand();                          }
511                 else if(commandName == "help")                                  {       shellcommand = new HelpCommand();                                       }
512                 else if(commandName == "quit")                                  {       shellcommand = new QuitCommand();                                       }
513                 else if(commandName == "collect.single")                {       shellcommand = new CollectCommand();                            }
514                 else if(commandName == "collect.shared")                {       shellcommand = new CollectSharedCommand();                      }
515                 else if(commandName == "rarefaction.single")    {       shellcommand = new RareFactCommand();                           }
516                 else if(commandName == "rarefaction.shared")    {       shellcommand = new RareFactSharedCommand();                     }
517                 else if(commandName == "summary.single")                {       shellcommand = new SummaryCommand();                            }
518                 else if(commandName == "summary.shared")                {       shellcommand = new SummarySharedCommand();                      }
519                 else if(commandName == "unifrac.weighted")              {       shellcommand = new UnifracWeightedCommand();            }
520                 else if(commandName == "unifrac.unweighted")    {       shellcommand = new UnifracUnweightedCommand();          }
521                 else if(commandName == "get.group")             {   shellcommand = new GetgroupCommand();                               }
522                 else if(commandName == "get.label")             {   shellcommand = new GetlabelCommand();                               }
523                 else if(commandName == "get.sabund")            {   shellcommand = new GetSAbundCommand();                              }
524                 else if(commandName == "get.rabund")            {   shellcommand = new GetRAbundCommand();                              }
525                 else if(commandName == "libshuff")              {   shellcommand = new LibShuffCommand();                               }
526                 else if(commandName == "heatmap.bin")                   {   shellcommand = new HeatMapCommand();                                }
527                 else if(commandName == "heatmap.sim")                   {   shellcommand = new HeatMapSimCommand();                             }
528                 else if(commandName == "filter.seqs")                   {   shellcommand = new FilterSeqsCommand();                             }
529                 else if(commandName == "venn")                                  {   shellcommand = new VennCommand();                                   }
530                 else if(commandName == "bin.seqs")                              {   shellcommand = new BinSeqCommand();                                 }
531                 else if(commandName == "get.oturep")                    {   shellcommand = new GetOTURepCommand();                              }
532                 else if(commandName == "tree.shared")                   {   shellcommand = new TreeGroupCommand();                              }
533                 else if(commandName == "dist.shared")                   {   shellcommand = new MatrixOutputCommand();                   }
534                 else if(commandName == "bootstrap.shared")              {   shellcommand = new BootSharedCommand();                             }
535                 else if(commandName == "consensus")                             {   shellcommand = new ConcensusCommand();                              }
536                 else if(commandName == "dist.seqs")                             {   shellcommand = new DistanceCommand();                               }
537                 else if(commandName == "align.seqs")                    {   shellcommand = new AlignCommand();                                  }
538                 else if(commandName == "summary.seqs")                  {       shellcommand = new SeqSummaryCommand();                         }
539                 else if(commandName == "screen.seqs")                   {       shellcommand = new ScreenSeqsCommand();                         }
540                 else if(commandName == "reverse.seqs")                  {       shellcommand = new ReverseSeqsCommand();                        }
541                 else if(commandName == "trim.seqs")                             {       shellcommand = new TrimSeqsCommand();                           }
542                 else if(commandName == "chimera.seqs")                  {       shellcommand = new ChimeraSeqsCommand();                        }
543                 else if(commandName == "list.seqs")                             {       shellcommand = new ListSeqsCommand();                           }
544                 else if(commandName == "get.seqs")                              {       shellcommand = new GetSeqsCommand();                            }
545                 else if(commandName == "remove.seqs")                   {       shellcommand = new RemoveSeqsCommand();                         }
546                 else if(commandName == "merge.files")                   {       shellcommand = new MergeFileCommand();                          }
547                 else if(commandName == "system")                                {       shellcommand = new SystemCommand();                                     }
548                 else if(commandName == "align.check")                   {       shellcommand = new AlignCheckCommand();                         }
549                 else if(commandName == "get.sharedseqs")                {       shellcommand = new GetSharedOTUCommand();                       }
550                 else if(commandName == "get.otulist")                   {       shellcommand = new GetListCountCommand();                       }
551                 else if(commandName == "hcluster")                              {       shellcommand = new HClusterCommand();                           }
552                 else if(commandName == "classify.seqs")                 {       shellcommand = new ClassifySeqsCommand();                       }
553                 else if(commandName == "chimera.ccode")                 {       shellcommand = new ChimeraCcodeCommand();                       }
554                 else if(commandName == "chimera.check")                 {       shellcommand = new ChimeraCheckCommand();                       }
555                 else if(commandName == "chimera.slayer")                {       shellcommand = new ChimeraSlayerCommand();                      }
556                 else if(commandName == "chimera.pintail")               {       shellcommand = new ChimeraPintailCommand();                     }
557                 else if(commandName == "chimera.bellerophon")   {       shellcommand = new ChimeraBellerophonCommand();         }
558                 else if(commandName == "phylotype")                             {       shellcommand = new PhylotypeCommand();                          }
559                 else if(commandName == "mgcluster")                             {       shellcommand = new MGClusterCommand();                          }
560                 else if(commandName == "pre.cluster")                   {       shellcommand = new PreClusterCommand();                         }
561                 else if(commandName == "pcoa")                                  {       shellcommand = new PCACommand();                                        }
562                 else if(commandName == "otu.hierarchy")                 {       shellcommand = new OtuHierarchyCommand();                       }
563                 else if(commandName == "set.dir")                               {       shellcommand = new SetDirectoryCommand();                       }
564                 else if(commandName == "set.logfile")                   {       shellcommand = new SetLogFileCommand();                         }
565                 else if(commandName == "parse.list")                    {       shellcommand = new ParseListCommand();                          }
566                 else if(commandName == "parse.sff")                             {       shellcommand = new ParseSFFCommand();                           }
567                 else if(commandName == "phylo.diversity")               {       shellcommand = new PhyloDiversityCommand();                     }
568                 else if(commandName == "make.group")                    {       shellcommand = new MakeGroupCommand();                          }
569                 else if(commandName == "chop.seqs")                             {       shellcommand = new ChopSeqsCommand();                           }
570                 else if(commandName == "clearcut")                              {       shellcommand = new ClearcutCommand();                           }
571                 else if(commandName == "catchall")                              {       shellcommand = new CatchAllCommand();                           }
572                 else if(commandName == "split.abund")                   {       shellcommand = new SplitAbundCommand();                         }
573                 else if(commandName == "cluster.split")                 {       shellcommand = new ClusterSplitCommand();                       }
574                 else if(commandName == "classify.otu")                  {       shellcommand = new ClassifyOtuCommand();                        }
575                 else if(commandName == "degap.seqs")                    {       shellcommand = new DegapSeqsCommand();                          }
576                 else if(commandName == "get.relabund")                  {       shellcommand = new GetRelAbundCommand();                        }
577                 else if(commandName == "sens.spec")                             {       shellcommand = new SensSpecCommand();                           }
578                 else if(commandName == "seq.error")                             {       shellcommand = new SeqErrorCommand();                           }
579                 else if(commandName == "sffinfo")                               {       shellcommand = new SffInfoCommand();                            }
580                 else if(commandName == "normalize.shared")              {       shellcommand = new NormalizeSharedCommand();            }
581                 else if(commandName == "metastats")                             {       shellcommand = new MetaStatsCommand();                          }
582                 else if(commandName == "split.groups")                  {       shellcommand = new SplitGroupCommand();                         }
583                 else if(commandName == "cluster.fragments")             {       shellcommand = new ClusterFragmentsCommand();           }
584                 else if(commandName == "get.lineage")                   {       shellcommand = new GetLineageCommand();                         }
585                 else if(commandName == "remove.lineage")                {       shellcommand = new RemoveLineageCommand();                      }
586                 else if(commandName == "get.groups")                    {       shellcommand = new GetGroupsCommand();                          }
587                 else if(commandName == "remove.groups")                 {       shellcommand = new RemoveGroupsCommand();                       }
588                 else if(commandName == "get.otus")                              {       shellcommand = new GetOtusCommand();                            }
589                 else if(commandName == "remove.otus")                   {       shellcommand = new RemoveOtusCommand();                         }
590                 else if(commandName == "fastq.info")                    {       shellcommand = new ParseFastaQCommand();                        }
591                 else if(commandName == "deunique.seqs")                 {       shellcommand = new DeUniqueSeqsCommand();                       }
592                 else if(commandName == "pairwise.seqs")                 {       shellcommand = new PairwiseSeqsCommand();                       }
593                 else if(commandName == "cluster.classic")               {       shellcommand = new ClusterDoturCommand();                       }
594                 else if(commandName == "sub.sample")                    {       shellcommand = new SubSampleCommand();                          }
595                 else if(commandName == "indicator")                             {       shellcommand = new IndicatorCommand();                          }
596                 else if(commandName == "consensus.seqs")                {       shellcommand = new ConsensusSeqsCommand();                      }
597                 else                                                                                    {       shellcommand = new NoCommand();                                         }
598
599                 return shellcommand;
600         }
601         catch(exception& e) {
602                 m->errorOut(e, "CommandFactory", "getCommand");
603                 exit(1);
604         }
605 }
606 /***********************************************************
607 //This function is used to interrupt a command
608 Command* CommandFactory::getCommand(){
609         try {
610                 delete command;   //delete the old command
611
612                 string s = "";
613             command = new NoCommand(s);
614         
615                 return command;
616         }
617         catch(exception& e) {
618                 m->errorOut(e, "CommandFactory", "getCommand");
619                 exit(1);
620         }
621 }
622 /***********************************************************************/
623 bool CommandFactory::isValidCommand(string command) {
624         try {   
625         
626                 //is the command in the map
627                 if ((commands.find(command)) != (commands.end())) {
628                         return true;
629                 }else{
630                         m->mothurOut(command + " is not a valid command in Mothur.  Valid commands are ");
631                         for (it = commands.begin(); it != commands.end(); it++) {
632                                 m->mothurOut(it->first + ", ");
633                         }
634                         m->mothurOutEndLine();
635                         return false;
636                 }
637                 
638         }
639         catch(exception& e) {
640                 m->errorOut(e, "CommandFactory", "isValidCommand");
641                 exit(1);
642         }
643 }
644 /***********************************************************************/
645 bool CommandFactory::isValidCommand(string command, string noError) {
646         try {   
647         
648                 //is the command in the map
649                 if ((commands.find(command)) != (commands.end())) {
650                         return true;
651                 }else{
652                         return false;
653                 }
654                 
655         }
656         catch(exception& e) {
657                 m->errorOut(e, "CommandFactory", "isValidCommand");
658                 exit(1);
659         }
660 }
661 /***********************************************************************/
662 void CommandFactory::printCommands(ostream& out) {
663         try {   
664                 out << "Valid commands are: ";
665                 for (it = commands.begin(); it != commands.end(); it++) {
666                         out << it->first << ",";
667                 }
668                 out << endl;
669         }
670         catch(exception& e) {
671                 m->errorOut(e, "CommandFactory", "printCommands");
672                 exit(1);
673         }
674 }
675 /***********************************************************************/
676
677
678
679