]> git.donarmstrong.com Git - mothur.git/blobdiff - commandfactory.cpp
modified some calculators and other stuff - pds
[mothur.git] / commandfactory.cpp
index 5155095526d1a3d08f4b72ec5236c882400ba5ec..ff156139ea3f3c1d67791d440113177fc261a700 100644 (file)
 #include "libshuffcommand.h"
 #include "heatmapcommand.h"
 #include "venncommand.h"
-#include "mothur.h"
 #include "nocommands.h"
 #include "binsequencecommand.h"
 #include "getoturepcommand.h"
+#include "treegroupscommand.h"
+#include "bootstrapsharedcommand.h"
 
 
 /***********************************************************/
@@ -83,6 +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.shared")                   {   command = new TreeGroupCommand();                   }
+               else if(commandName == "bootstrap.shared")              {   command = new BootSharedCommand();                  }
                else                                                                                    {       command = new NoCommand();                                      }
 
                return command;