]> git.donarmstrong.com Git - mothur.git/blobdiff - commandfactory.cpp
removed "shared" from some of the calculator names and classes
[mothur.git] / commandfactory.cpp
index 354b5a3ba4de65d6576e408ff880930a11c0c1e0..b4e68e4cd67de88de0198251f2d595c9e000a498 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"
 
 
 /***********************************************************/
@@ -81,6 +82,8 @@ Command* CommandFactory::getCommand(string commandName){
                else if(commandName == "heatmap")                               {   command = new HeatMapCommand();                             }
                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                                                                                    {       command = new NoCommand();                                      }
 
                return command;