]> git.donarmstrong.com Git - mothur.git/blobdiff - commandfactory.cpp
changes to chop.seqs
[mothur.git] / commandfactory.cpp
index aaeec67f1b4eec4e2194fc014e87064c1d5c2b5c..4d2b0ae2b93a6e205ae8b8d24a86dea37c2f6606 100644 (file)
 #include "chimeraslayercommand.h"
 #include "chimerapintailcommand.h"
 #include "chimerabellerophoncommand.h"
+#include "setlogfilecommand.h"
+#include "phylodiversitycommand.h"
+#include "makegroupcommand.h"
+#include "chopseqscommand.h"
+#include "clearcutcommand.h"
+#include "catchallcommand.h"
+#include "splitabundcommand.h"
+#include "clustersplitcommand.h"
 
 /*******************************************************/
 
@@ -97,6 +105,8 @@ CommandFactory::CommandFactory(){
        command = new NoCommand(s);
        
        outputDir = ""; inputDir = "";
+       logFileName = "";
+       append = false;
        
        //initialize list of valid commands
        commands["read.dist"]                   = "read.dist"; 
@@ -127,9 +137,7 @@ CommandFactory::CommandFactory(){
        commands["get.rabund"]          = "get.rabund";
        commands["bootstrap.shared"]    = "bootstrap.shared";
        //commands["consensus"]                 = "consensus";
-       commands["help"]                                = "help"; 
-       commands["summary.seqs"]                = "summary.seqs";
-       commands["screen.seqs"]                 = "screen.seqs";
+       commands["help"]                                = "help";
        commands["reverse.seqs"]                = "reverse.seqs";
        commands["trim.seqs"]                   = "trim.seqs";
        commands["list.seqs"]                   = "list.seqs";
@@ -149,6 +157,14 @@ CommandFactory::CommandFactory(){
        commands["merge.files"]                 = "merge.files";
        commands["parse.list"]                  = "parse.list";
        commands["parse.sff"]                   = "parse.sff";
+       commands["set.logfile"]                 = "set.logfile";
+       commands["phylo.diversity"]             = "phylo.diversity";
+       commands["make.group"]                  = "make.group";
+       commands["chop.seqs"]                   = "chop.seqs";
+       commands["clearcut"]                    = "clearcut";
+       commands["catchall"]                    = "catchall";
+       commands["split.abund"]                 = "split.abund";
+       //commands["cluster.split"]             = "cluster.split";
        commands["classify.seqs"]               = "MPIEnabled"; 
        commands["dist.seqs"]                   = "MPIEnabled";
        commands["filter.seqs"]                 = "MPIEnabled";
@@ -159,6 +175,8 @@ CommandFactory::CommandFactory(){
        commands["chimera.slayer"]              = "MPIEnabled";
        commands["chimera.pintail"]             = "MPIEnabled";
        commands["chimera.bellerophon"] = "MPIEnabled";
+       commands["screen.seqs"]                 = "MPIEnabled";
+       commands["summary.seqs"]                = "MPIEnabled";
        commands["quit"]                                = "MPIEnabled"; 
 
 }
@@ -260,8 +278,16 @@ Command* CommandFactory::getCommand(string commandName, string optionString){
                else if(commandName == "pcoa")                                  {       command = new PCACommand(optionString);                                         }
                else if(commandName == "otu.hierarchy")                 {       command = new OtuHierarchyCommand(optionString);                        }
                else if(commandName == "set.dir")                               {       command = new SetDirectoryCommand(optionString);                        }
+               else if(commandName == "set.logfile")                   {       command = new SetLogFileCommand(optionString);                          }
                else if(commandName == "parse.list")                    {       command = new ParseListCommand(optionString);                           }
                else if(commandName == "parse.sff")                             {       command = new ParseSFFCommand(optionString);                            }
+               else if(commandName == "phylo.diversity")               {       command = new PhyloDiversityCommand(optionString);                      }
+               else if(commandName == "make.group")                    {       command = new MakeGroupCommand(optionString);                           }
+               else if(commandName == "chop.seqs")                             {       command = new ChopSeqsCommand(optionString);                            }
+               else if(commandName == "clearcut")                              {       command = new ClearcutCommand(optionString);                            }
+               else if(commandName == "catchall")                              {       command = new CatchAllCommand(optionString);                            }
+               else if(commandName == "split.abund")                   {       command = new SplitAbundCommand(optionString);                          }
+               //else if(commandName == "cluster.split")                       {       command = new ClusterSplitCommand(optionString);                        }
                else                                                                                    {       command = new NoCommand(optionString);                                          }
 
                return command;