X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=commandfactory.cpp;h=6c6bc17bb3dfd47f31b68facd01d6e0724cf3d8d;hb=70491a12902e89b85cfa6b44a7b7fbe066ee2ac1;hp=c8421d29c513f65bfe8684fe10a09e8c439d7915;hpb=8159f34321e2c771638059b59a986caca9f3ab60;p=mothur.git diff --git a/commandfactory.cpp b/commandfactory.cpp index c8421d2..6c6bc17 100644 --- a/commandfactory.cpp +++ b/commandfactory.cpp @@ -137,6 +137,11 @@ #include "sffmultiplecommand.h" #include "classifysharedcommand.h" #include "filtersharedcommand.h" +#include "primerdesigncommand.h" +#include "getdistscommand.h" +#include "removedistscommand.h" +#include "mergetaxsummarycommand.h" +#include "getmetacommunitycommand.h" /*******************************************************/ @@ -297,6 +302,11 @@ CommandFactory::CommandFactory(){ commands["quit"] = "MPIEnabled"; commands["classify.shared"] = "classify.shared"; commands["filter.shared"] = "filter.shared"; + commands["primer.design"] = "primer.design"; + commands["get.dists"] = "get.dists"; + commands["remove.dists"] = "remove.dists"; + commands["merge.taxsummary"] = "merge.taxsummary"; + commands["get.metacommunity"] = "get.metacommunity"; } @@ -513,6 +523,11 @@ Command* CommandFactory::getCommand(string commandName, string optionString){ else if(commandName == "sff.multiple") { command = new SffMultipleCommand(optionString); } else if(commandName == "classify.shared") { command = new ClassifySharedCommand(optionString); } else if(commandName == "filter.shared") { command = new FilterSharedCommand(optionString); } + else if(commandName == "primer.design") { command = new PrimerDesignCommand(optionString); } + else if(commandName == "get.dists") { command = new GetDistsCommand(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 { command = new NoCommand(optionString); } return command; @@ -670,6 +685,11 @@ Command* CommandFactory::getCommand(string commandName, string optionString, str else if(commandName == "sff.multiple") { pipecommand = new SffMultipleCommand(optionString); } else if(commandName == "classify.shared") { pipecommand = new ClassifySharedCommand(optionString); } else if(commandName == "filter.shared") { pipecommand = new FilterSharedCommand(optionString); } + else if(commandName == "primer.design") { pipecommand = new PrimerDesignCommand(optionString); } + else if(commandName == "get.dists") { pipecommand = new GetDistsCommand(optionString); } + 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 { pipecommand = new NoCommand(optionString); } return pipecommand; @@ -813,6 +833,11 @@ Command* CommandFactory::getCommand(string commandName){ else if(commandName == "sff.multiple") { shellcommand = new SffMultipleCommand(); } else if(commandName == "classify.shared") { shellcommand = new ClassifySharedCommand(); } else if(commandName == "filter.shared") { shellcommand = new FilterSharedCommand(); } + else if(commandName == "primer.design") { shellcommand = new PrimerDesignCommand(); } + else if(commandName == "get.dists") { shellcommand = new GetDistsCommand(); } + 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 { shellcommand = new NoCommand(); } return shellcommand;