]> git.donarmstrong.com Git - mothur.git/blobdiff - commandfactory.cpp
added bootstrap.shared command and fixed some bugs with heatmap
[mothur.git] / commandfactory.cpp
index b4e68e4cd67de88de0198251f2d595c9e000a498..ff156139ea3f3c1d67791d440113177fc261a700 100644 (file)
@@ -36,6 +36,7 @@
 #include "binsequencecommand.h"
 #include "getoturepcommand.h"
 #include "treegroupscommand.h"
+#include "bootstrapsharedcommand.h"
 
 
 /***********************************************************/
@@ -83,7 +84,8 @@ Command* CommandFactory::getCommand(string commandName){
                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.groups")                   {   command = new TreeGroupCommand();                   }
+               else if(commandName == "tree.shared")                   {   command = new TreeGroupCommand();                   }
+               else if(commandName == "bootstrap.shared")              {   command = new BootSharedCommand();                  }
                else                                                                                    {       command = new NoCommand();                                      }
 
                return command;