X-Git-Url: https://git.donarmstrong.com/?p=mothur.git;a=blobdiff_plain;f=commandfactory.cpp;h=a0796a34fc243916081632e54a54233bef679a5f;hp=387ee10833323300a66a0e6d1161a64bff6fb9ee;hb=ef4c1b4dfeecc17a0ad5c1c114c748a0443a88ac;hpb=f204e1111a6d4da30db9bccfa65f75546f59ba11 diff --git a/commandfactory.cpp b/commandfactory.cpp index 387ee10..a0796a3 100644 --- a/commandfactory.cpp +++ b/commandfactory.cpp @@ -144,6 +144,7 @@ #include "getmetacommunitycommand.h" #include "sparcccommand.h" #include "makelookupcommand.h" +#include "renameseqscommand.h" /*******************************************************/ @@ -311,6 +312,7 @@ CommandFactory::CommandFactory(){ commands["get.metacommunity"] = "get.metacommunity"; commands["sparcc"] = "sparcc"; commands["make.lookup"] = "make.lookup"; + commands["rename.seqs"] = "rename.seqs"; } @@ -534,6 +536,7 @@ Command* CommandFactory::getCommand(string commandName, string 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; @@ -698,6 +701,7 @@ Command* CommandFactory::getCommand(string commandName, string optionString, str 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; @@ -848,6 +852,7 @@ Command* CommandFactory::getCommand(string commandName){ 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;