X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=commandfactory.cpp;h=41a67297c4199ab819ef7f0498dfd27e6debd515;hb=372fb21ea66ced432b109225851a1b80ef0491a3;hp=a0796a34fc243916081632e54a54233bef679a5f;hpb=ef4c1b4dfeecc17a0ad5c1c114c748a0443a88ac;p=mothur.git diff --git a/commandfactory.cpp b/commandfactory.cpp index a0796a3..41a6729 100644 --- a/commandfactory.cpp +++ b/commandfactory.cpp @@ -145,6 +145,9 @@ #include "sparcccommand.h" #include "makelookupcommand.h" #include "renameseqscommand.h" +#include "makelefsecommand.h" +#include "lefsecommand.h" +#include "kruskalwalliscommand.h" /*******************************************************/ @@ -313,6 +316,9 @@ CommandFactory::CommandFactory(){ commands["sparcc"] = "sparcc"; commands["make.lookup"] = "make.lookup"; commands["rename.seqs"] = "rename.seqs"; + commands["make.lefse"] = "make.lefse"; + commands["lefse"] = "lefse"; + commands["kruskal.wallis"] = "kruskal.wallis"; } @@ -537,6 +543,9 @@ Command* CommandFactory::getCommand(string commandName, string 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 if(commandName == "make.lefse") { command = new MakeLefseCommand(optionString); } + else if(commandName == "lefse") { command = new LefseCommand(optionString); } + else if(commandName == "kruskal.wallis") { command = new KruskalWallisCommand(optionString); } else { command = new NoCommand(optionString); } return command; @@ -702,6 +711,9 @@ Command* CommandFactory::getCommand(string commandName, string optionString, str 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 if(commandName == "make.lefse") { pipecommand = new MakeLefseCommand(optionString); } + else if(commandName == "lefse") { pipecommand = new LefseCommand(optionString); } + else if(commandName == "kruskal.wallis") { pipecommand = new KruskalWallisCommand(optionString); } else { pipecommand = new NoCommand(optionString); } return pipecommand; @@ -853,6 +865,9 @@ Command* CommandFactory::getCommand(string commandName){ else if(commandName == "sparcc") { shellcommand = new SparccCommand(); } else if(commandName == "make.lookup") { shellcommand = new MakeLookupCommand(); } else if(commandName == "rename.seqs") { shellcommand = new RenameSeqsCommand(); } + else if(commandName == "make.lefse") { shellcommand = new MakeLefseCommand(); } + else if(commandName == "lefse") { shellcommand = new LefseCommand(); } + else if(commandName == "kruskal.wallis") { shellcommand = new KruskalWallisCommand(); } else { shellcommand = new NoCommand(); } return shellcommand;