X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=commandfactory.cpp;h=a0796a34fc243916081632e54a54233bef679a5f;hb=ef4c1b4dfeecc17a0ad5c1c114c748a0443a88ac;hp=42e99d1331b3694792eed47e94ab9d21b33f9545;hpb=1f0e54b53b714781f3f2fee7d01177fade98a625;p=mothur.git diff --git a/commandfactory.cpp b/commandfactory.cpp index 42e99d1..a0796a3 100644 --- a/commandfactory.cpp +++ b/commandfactory.cpp @@ -140,6 +140,11 @@ #include "primerdesigncommand.h" #include "getdistscommand.h" #include "removedistscommand.h" +#include "mergetaxsummarycommand.h" +#include "getmetacommunitycommand.h" +#include "sparcccommand.h" +#include "makelookupcommand.h" +#include "renameseqscommand.h" /*******************************************************/ @@ -303,6 +308,11 @@ CommandFactory::CommandFactory(){ 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"; + commands["sparcc"] = "sparcc"; + commands["make.lookup"] = "make.lookup"; + commands["rename.seqs"] = "rename.seqs"; } @@ -522,6 +532,11 @@ Command* CommandFactory::getCommand(string commandName, string 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 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; @@ -682,6 +697,11 @@ Command* CommandFactory::getCommand(string commandName, string optionString, str 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 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; @@ -828,6 +848,11 @@ Command* CommandFactory::getCommand(string commandName){ 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 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;