X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=commandfactory.cpp;h=725ce8cb7d2c4c9685e0f95ae6f67bc5cbb5fc83;hb=bc4c4d63e983a3e91e74b5038bfec6705e1a3a2e;hp=2b19f72e1761544c5ec5eb7b676d5bd8ad30e4a6;hpb=5e350c02c92aa01b42b16baf84efbc24166f60a1;p=mothur.git diff --git a/commandfactory.cpp b/commandfactory.cpp index 2b19f72..725ce8c 100644 --- a/commandfactory.cpp +++ b/commandfactory.cpp @@ -82,6 +82,7 @@ #include "classifyotucommand.h" #include "degapseqscommand.h" #include "getrelabundcommand.h" +#include "sensspeccommand.h" /*******************************************************/ @@ -183,6 +184,7 @@ CommandFactory::CommandFactory(){ commands["screen.seqs"] = "MPIEnabled"; commands["summary.seqs"] = "MPIEnabled"; commands["cluster.split"] = "MPIEnabled"; + commands["sens.spec"] = "sens.spec"; commands["quit"] = "MPIEnabled"; } @@ -297,6 +299,7 @@ Command* CommandFactory::getCommand(string commandName, string optionString){ else if(commandName == "classify.otu") { command = new ClassifyOtuCommand(optionString); } else if(commandName == "degap.seqs") { command = new DegapSeqsCommand(optionString); } else if(commandName == "get.relabund") { command = new GetRelAbundCommand(optionString); } + else if(commandName == "sens.spec") { command = new SensSpecCommand(optionString); } else { command = new NoCommand(optionString); } return command;