]> git.donarmstrong.com Git - mothur.git/blobdiff - commandfactory.cpp
removed "shared" from some of the calculator names and classes
[mothur.git] / commandfactory.cpp
index 7670d412df334d2d656000cf07349aa404ffd21b..b4e68e4cd67de88de0198251f2d595c9e000a498 100644 (file)
 #include "unifracunweightedcommand.h"
 #include "unifracweightedcommand.h"
 #include "libshuffcommand.h"
-#include "mothur.h"
+#include "heatmapcommand.h"
+#include "venncommand.h"
 #include "nocommands.h"
+#include "binsequencecommand.h"
+#include "getoturepcommand.h"
+#include "treegroupscommand.h"
 
 
 /***********************************************************/
@@ -75,6 +79,11 @@ Command* CommandFactory::getCommand(string commandName){
                else if(commandName == "get.label")             {   command = new GetlabelCommand();                    }
                else if(commandName == "get.line")              {   command = new GetlineCommand();                             }
                else if(commandName == "libshuff")              {   command = new LibShuffCommand();                    }
+               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;