]> git.donarmstrong.com Git - mothur.git/blobdiff - commandfactory.cpp
added rename.seqs command.
[mothur.git] / commandfactory.cpp
index cf9984418a9099ef99d96f802d5328dddd5072d8..a0796a34fc243916081632e54a54233bef679a5f 100644 (file)
 #include "mergetaxsummarycommand.h"
 #include "getmetacommunitycommand.h"
 #include "sparcccommand.h"
+#include "makelookupcommand.h"
+#include "renameseqscommand.h"
 
 /*******************************************************/
 
@@ -309,6 +311,8 @@ CommandFactory::CommandFactory(){
     commands["merge.taxsummary"]    = "merge.taxsummary";
     commands["get.metacommunity"]   = "get.metacommunity";
     commands["sparcc"]              = "sparcc";
+    commands["make.lookup"]         = "make.lookup";
+    commands["rename.seqs"]         = "rename.seqs";
     
 
 }
@@ -531,6 +535,8 @@ Command* CommandFactory::getCommand(string commandName, string 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 if(commandName == "rename.seqs")                  {       command = new RenameSeqsCommand(optionString);                          }
                else                                                                                    {       command = new NoCommand(optionString);                                          }
 
                return command;
@@ -694,6 +700,8 @@ Command* CommandFactory::getCommand(string commandName, string optionString, str
         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 if(commandName == "rename.seqs")                  {       pipecommand = new RenameSeqsCommand(optionString);                              }
                else                                                                                    {       pipecommand = new NoCommand(optionString);                                              }
 
                return pipecommand;
@@ -843,6 +851,8 @@ Command* CommandFactory::getCommand(string commandName){
         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 if(commandName == "rename.seqs")                  {       shellcommand = new RenameSeqsCommand();                         }
                else                                                                                    {       shellcommand = new NoCommand();                                         }
 
                return shellcommand;