X-Git-Url: https://git.donarmstrong.com/?p=mothur.git;a=blobdiff_plain;f=commandfactory.cpp;h=8488e65b1f140184c9c183268ffc53662cf00fb8;hp=8056227c3bce48545f7422502a4a7cbda163201f;hb=f15f7092c97277337d4fdd9ef674015c15a13220;hpb=5c5b831cf797385966dacb7a94c0ed63f3753a7c diff --git a/commandfactory.cpp b/commandfactory.cpp index 8056227..8488e65 100644 --- a/commandfactory.cpp +++ b/commandfactory.cpp @@ -31,6 +31,7 @@ #include "unifracweightedcommand.h" #include "libshuffcommand.h" #include "heatmapcommand.h" +#include "heatmapsimcommand.h" #include "filterseqscommand.h" #include "mothur.h" #include "venncommand.h" @@ -93,7 +94,8 @@ Command* CommandFactory::getCommand(string commandName){ 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 == "heatmap.bin") { command = new HeatMapCommand(); } + else if(commandName == "heatmap.sim") { command = new HeatMapSimCommand(); } else if(commandName == "filter.seqs") { command = new FilterSeqsCommand(); } else if(commandName == "venn") { command = new VennCommand(); } else if(commandName == "bin.seqs") { command = new BinSeqCommand(); }