]> git.donarmstrong.com Git - mothur.git/blobdiff - commandfactory.cpp
added modify names parameter to set.dir
[mothur.git] / commandfactory.cpp
index 6c6bc17bb3dfd47f31b68facd01d6e0724cf3d8d..387ee10833323300a66a0e6d1161a64bff6fb9ee 100644 (file)
 #include "removedistscommand.h"
 #include "mergetaxsummarycommand.h"
 #include "getmetacommunitycommand.h"
+#include "sparcccommand.h"
+#include "makelookupcommand.h"
 
 /*******************************************************/
 
@@ -307,6 +309,8 @@ CommandFactory::CommandFactory(){
     commands["remove.dists"]        = "remove.dists";
     commands["merge.taxsummary"]    = "merge.taxsummary";
     commands["get.metacommunity"]   = "get.metacommunity";
+    commands["sparcc"]              = "sparcc";
+    commands["make.lookup"]         = "make.lookup";
     
 
 }
@@ -528,6 +532,8 @@ Command* CommandFactory::getCommand(string commandName, string optionString){
         else if(commandName == "remove.dists")          {      command = new RemoveDistsCommand(optionString);             }
         else if(commandName == "merge.taxsummary")      {      command = new MergeTaxSummaryCommand(optionString);         }
         else if(commandName == "get.metacommunity")     {      command = new GetMetaCommunityCommand(optionString);        }
+        else if(commandName == "sparcc")                {      command = new SparccCommand(optionString);                  }
+        else if(commandName == "make.lookup")                  {       command = new MakeLookupCommand(optionString);                          }
                else                                                                                    {       command = new NoCommand(optionString);                                          }
 
                return command;
@@ -690,6 +696,8 @@ Command* CommandFactory::getCommand(string commandName, string optionString, str
         else if(commandName == "remove.dists")          {      pipecommand = new RemoveDistsCommand(optionString);             }
         else if(commandName == "merge.taxsummary")      {      pipecommand = new MergeTaxSummaryCommand(optionString);         }
         else if(commandName == "get.metacommunity")     {      pipecommand = new GetMetaCommunityCommand(optionString);        }
+        else if(commandName == "sparcc")                {      pipecommand = new SparccCommand(optionString);                  }
+        else if(commandName == "make.lookup")                  {       pipecommand = new MakeLookupCommand(optionString);                              }
                else                                                                                    {       pipecommand = new NoCommand(optionString);                                              }
 
                return pipecommand;
@@ -838,6 +846,8 @@ Command* CommandFactory::getCommand(string commandName){
         else if(commandName == "remove.dists")          {      shellcommand = new RemoveDistsCommand();            }
         else if(commandName == "merge.taxsummary")      {      shellcommand = new MergeTaxSummaryCommand();        }
         else if(commandName == "get.metacommunity")     {      shellcommand = new GetMetaCommunityCommand();       }
+        else if(commandName == "sparcc")                {      shellcommand = new SparccCommand();                 }
+        else if(commandName == "make.lookup")                  {       shellcommand = new MakeLookupCommand();                         }
                else                                                                                    {       shellcommand = new NoCommand();                                         }
 
                return shellcommand;