]> git.donarmstrong.com Git - mothur.git/blobdiff - commandfactory.cpp
working on libshuff
[mothur.git] / commandfactory.cpp
index a5ec5f12c48059089496af3a39d26b0fedb12f52..19022040cc507e29ec6019442638564ad0ce6048 100644 (file)
@@ -30,6 +30,7 @@
 #include "parsimonycommand.h"
 #include "unifracunweightedcommand.h"
 #include "unifracweightedcommand.h"
+#include "libshuffcommand.h"
 #include "mothur.h"
 
 
@@ -71,9 +72,10 @@ Command* CommandFactory::getCommand(string commandName){
                else if(commandName == "summary.shared")                {       command = new SummarySharedCommand();           }
                else if(commandName == "unifrac.weighted")              {       command = new UnifracWeightedCommand();         }
                else if(commandName == "unifrac.unweighted")    {       command = new UnifracUnweightedCommand();       }
-               else if(commandName == "get.group")             {   command = new GetgroupCommand();        }
-               else if(commandName == "get.label")             {   command = new GetlabelCommand();        }
-               else if(commandName == "get.line")              {   command = new GetlineCommand();         }
+               else if(commandName == "get.group")             {   command = new GetgroupCommand();                    }
+               else if(commandName == "get.label")             {   command = new GetlabelCommand();                    }
+               else if(commandName == "get.line")              {   command = new GetlineCommand();                             }
+               else if(commandName == "libshuff")              {   command = new LibShuffCommand();                    }
                else                                                                                    {       command = new NoCommand();                                      }
 
                return command;