X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=commandfactory.cpp;h=4d2b0ae2b93a6e205ae8b8d24a86dea37c2f6606;hb=62568a297aaf939ab753334f17abde82ec8e8531;hp=f358797f7d94bf557c8bf986dd16faaed03743f3;hpb=cfe70bbc94980a0177af465d3464db754673bd56;p=mothur.git diff --git a/commandfactory.cpp b/commandfactory.cpp index f358797..4d2b0ae 100644 --- a/commandfactory.cpp +++ b/commandfactory.cpp @@ -78,6 +78,7 @@ #include "clearcutcommand.h" #include "catchallcommand.h" #include "splitabundcommand.h" +#include "clustersplitcommand.h" /*******************************************************/ @@ -163,6 +164,7 @@ CommandFactory::CommandFactory(){ commands["clearcut"] = "clearcut"; commands["catchall"] = "catchall"; commands["split.abund"] = "split.abund"; + //commands["cluster.split"] = "cluster.split"; commands["classify.seqs"] = "MPIEnabled"; commands["dist.seqs"] = "MPIEnabled"; commands["filter.seqs"] = "MPIEnabled"; @@ -285,6 +287,7 @@ Command* CommandFactory::getCommand(string commandName, string optionString){ else if(commandName == "clearcut") { command = new ClearcutCommand(optionString); } else if(commandName == "catchall") { command = new CatchAllCommand(optionString); } else if(commandName == "split.abund") { command = new SplitAbundCommand(optionString); } + //else if(commandName == "cluster.split") { command = new ClusterSplitCommand(optionString); } else { command = new NoCommand(optionString); } return command;