]> git.donarmstrong.com Git - mothur.git/blobdiff - commandfactory.cpp
made sorting optional but sort by default, in case the user wants to see the heatmap...
[mothur.git] / commandfactory.cpp
index 19022040cc507e29ec6019442638564ad0ce6048..56fd56b348bdb497cdb04b01d01f4c3a87901a61 100644 (file)
@@ -22,7 +22,6 @@
 #include "summarycommand.h"
 #include "summarysharedcommand.h"
 #include "rarefactsharedcommand.h"
-#include "nocommand.h"
 #include "quitcommand.h"
 #include "helpcommand.h"
 #include "commandfactory.hpp"
@@ -31,7 +30,9 @@
 #include "unifracunweightedcommand.h"
 #include "unifracweightedcommand.h"
 #include "libshuffcommand.h"
+#include "heatmapcommand.h"
 #include "mothur.h"
+#include "nocommands.h"
 
 
 /***********************************************************/
@@ -40,7 +41,6 @@
 CommandFactory::CommandFactory(){
        command = new NoCommand();
 }
-
 /***********************************************************/
 
 /***********************************************************/
@@ -76,6 +76,7 @@ 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                                                                                    {       command = new NoCommand();                                      }
 
                return command;