X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=commandfactory.cpp;h=9b6411855b19a8cee7a9f5a4489d8fc522a689c8;hb=0024441c1ff9a98467ba53cc7420a37c98f32e86;hp=7670d412df334d2d656000cf07349aa404ffd21b;hpb=66f474db0824eebab0cebd53992728a0e5c789ca;p=mothur.git diff --git a/commandfactory.cpp b/commandfactory.cpp index 7670d41..9b64118 100644 --- a/commandfactory.cpp +++ b/commandfactory.cpp @@ -30,8 +30,22 @@ #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" +#include "aligncommand.h" +#include "matrixoutputcommand.h" +#include "getsabundcommand.h" +#include "getrabundcommand.h" +#include "seqsummarycommand.h" /***********************************************************/ @@ -74,7 +88,21 @@ Command* CommandFactory::getCommand(string commandName){ else if(commandName == "get.group") { command = new GetgroupCommand(); } else if(commandName == "get.label") { command = new GetlabelCommand(); } else if(commandName == "get.line") { command = new GetlineCommand(); } + else if(commandName == "get.sabund") { command = new GetSAbundCommand(); } + else if(commandName == "get.rabund") { command = new GetRAbundCommand(); } 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 == "dist.shared") { command = new MatrixOutputCommand(); } + else if(commandName == "bootstrap.shared") { command = new BootSharedCommand(); } + else if(commandName == "concensus") { command = new ConcensusCommand(); } + else if(commandName == "dist.seqs") { command = new DistanceCommand(); } + else if(commandName == "align.seqs") { command = new AlignCommand(); } + else if(commandName == "summary.seqs") { command = new SeqSummaryCommand(); } else { command = new NoCommand(); } return command;