X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=commandfactory.cpp;h=42e99d1331b3694792eed47e94ab9d21b33f9545;hb=1f0e54b53b714781f3f2fee7d01177fade98a625;hp=ce51d7228b415228da4c6c15121001989d03b75a;hpb=4b54ce99af7db8019ea907cd7c2edf789369ada9;p=mothur.git diff --git a/commandfactory.cpp b/commandfactory.cpp index ce51d72..42e99d1 100644 --- a/commandfactory.cpp +++ b/commandfactory.cpp @@ -138,6 +138,8 @@ #include "classifysharedcommand.h" #include "filtersharedcommand.h" #include "primerdesigncommand.h" +#include "getdistscommand.h" +#include "removedistscommand.h" /*******************************************************/ @@ -298,7 +300,9 @@ CommandFactory::CommandFactory(){ commands["quit"] = "MPIEnabled"; commands["classify.shared"] = "classify.shared"; commands["filter.shared"] = "filter.shared"; - commands["primer.design"] = "primer.design"; + commands["primer.design"] = "primer.design"; + commands["get.dists"] = "get.dists"; + commands["remove.dists"] = "remove.dists"; } @@ -516,6 +520,8 @@ Command* CommandFactory::getCommand(string commandName, string 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 { command = new NoCommand(optionString); } return command; @@ -674,6 +680,8 @@ Command* CommandFactory::getCommand(string commandName, string optionString, str 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 { pipecommand = new NoCommand(optionString); } return pipecommand; @@ -818,6 +826,8 @@ Command* CommandFactory::getCommand(string commandName){ 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 { shellcommand = new NoCommand(); } return shellcommand;