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