X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=commandfactory.cpp;h=c03751518e3e9a2ab54da2e38be693e08a3d6c34;hb=ec453945974b5c72af0bea042e3517312566d592;hp=7670d412df334d2d656000cf07349aa404ffd21b;hpb=66f474db0824eebab0cebd53992728a0e5c789ca;p=mothur.git diff --git a/commandfactory.cpp b/commandfactory.cpp index 7670d41..c037515 100644 --- a/commandfactory.cpp +++ b/commandfactory.cpp @@ -30,8 +30,17 @@ #include "unifracunweightedcommand.h" #include "unifracweightedcommand.h" #include "libshuffcommand.h" +#include "heatmapcommand.h" +#include "filterseqscommand.h" #include "mothur.h" +#include "venncommand.h" #include "nocommands.h" +#include "binsequencecommand.h" +#include "getoturepcommand.h" +#include "treegroupscommand.h" +#include "bootstrapsharedcommand.h" +#include "concensuscommand.h" +#include "distancecommand.h" /***********************************************************/ @@ -75,6 +84,15 @@ Command* CommandFactory::getCommand(string commandName){ else if(commandName == "get.label") { command = new GetlabelCommand(); } else if(commandName == "get.line") { command = new GetlineCommand(); } else if(commandName == "libshuff") { command = new LibShuffCommand(); } + else if(commandName == "heatmap") { command = new HeatMapCommand(); } + else if(commandName == "filter.seqs") { command = new FilterSeqsCommand(); } + else if(commandName == "venn") { command = new VennCommand(); } + else if(commandName == "bin.seqs") { command = new BinSeqCommand(); } + else if(commandName == "get.oturep") { command = new GetOTURepCommand(); } + else if(commandName == "tree.shared") { command = new TreeGroupCommand(); } + else if(commandName == "bootstrap.shared") { command = new BootSharedCommand(); } + else if(commandName == "concensus") { command = new ConcensusCommand(); } + else if(commandName == "dist.seq") { command = new DistanceCommand(); } else { command = new NoCommand(); } return command;