X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=commandfactory.cpp;h=bbdd61692b7e328937d526e887ef5f0590528f2e;hb=7bf581f8c46b08eb3bb40715dac94695edee4a67;hp=fc20ee5abbcda080d7965c133199e9a86e4a74cb;hpb=956cdff34f2d609a7736838b1631cd7957580b8b;p=mothur.git diff --git a/commandfactory.cpp b/commandfactory.cpp index fc20ee5..bbdd616 100644 --- a/commandfactory.cpp +++ b/commandfactory.cpp @@ -84,6 +84,9 @@ #include "getrelabundcommand.h" #include "sensspeccommand.h" #include "sffinfocommand.h" +#include "seqerrorcommand.h" +#include "normalizesharedcommand.h" +#include "metastatscommand.h" /*******************************************************/ @@ -173,6 +176,8 @@ CommandFactory::CommandFactory(){ commands["degap.seqs"] = "degap.seqs"; commands["get.relabund"] = "get.relabund"; commands["sffinfo"] = "sffinfo"; + commands["normalize.shared"] = "normalize.shared"; + commands["metastats"] = "metastats"; commands["classify.seqs"] = "MPIEnabled"; commands["dist.seqs"] = "MPIEnabled"; commands["filter.seqs"] = "MPIEnabled"; @@ -187,6 +192,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,7 +308,10 @@ 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 if(commandName == "normalize.shared") { command = new NormalizeSharedCommand(optionString); } + else if(commandName == "metastats") { command = new MetaStatsCommand(optionString); } else { command = new NoCommand(optionString); } return command;