X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=commandfactory.cpp;h=f86a354fdcb2fd4c5fb0b744f921e70cdb45abbf;hb=c27e902ede71ea4d20af65752ef04459c101611b;hp=fc20ee5abbcda080d7965c133199e9a86e4a74cb;hpb=80c3fe03a8fd1635d3ad7918ff00beb973449f50;p=mothur.git diff --git a/commandfactory.cpp b/commandfactory.cpp index fc20ee5..f86a354 100644 --- a/commandfactory.cpp +++ b/commandfactory.cpp @@ -84,6 +84,7 @@ #include "getrelabundcommand.h" #include "sensspeccommand.h" #include "sffinfocommand.h" +#include "seqerrorcommand.h" /*******************************************************/ @@ -187,6 +188,7 @@ CommandFactory::CommandFactory(){ commands["summary.seqs"] = "MPIEnabled"; commands["cluster.split"] = "MPIEnabled"; commands["sens.spec"] = "sens.spec"; + commands["seq.error"] = "seq.error"; commands["quit"] = "MPIEnabled"; } @@ -302,6 +304,7 @@ Command* CommandFactory::getCommand(string commandName, string 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 if(commandName == "seq.error") { command = new SeqErrorCommand(optionString); } else if(commandName == "sffinfo") { command = new SffInfoCommand(optionString); } else { command = new NoCommand(optionString); }