]> git.donarmstrong.com Git - mothur.git/blobdiff - commandfactory.cpp
sens.spec changes
[mothur.git] / commandfactory.cpp
index 2b19f72e1761544c5ec5eb7b676d5bd8ad30e4a6..725ce8cb7d2c4c9685e0f95ae6f67bc5cbb5fc83 100644 (file)
@@ -82,6 +82,7 @@
 #include "classifyotucommand.h"
 #include "degapseqscommand.h"
 #include "getrelabundcommand.h"
+#include "sensspeccommand.h"
 
 /*******************************************************/
 
@@ -183,6 +184,7 @@ CommandFactory::CommandFactory(){
        commands["screen.seqs"]                 = "MPIEnabled";
        commands["summary.seqs"]                = "MPIEnabled";
        commands["cluster.split"]               = "MPIEnabled";
+       commands["sens.spec"]                   = "sens.spec";
        commands["quit"]                                = "MPIEnabled"; 
 
 }
@@ -297,6 +299,7 @@ Command* CommandFactory::getCommand(string commandName, string optionString){
                else if(commandName == "classify.otu")                  {       command = new ClassifyOtuCommand(optionString);                         }
                else if(commandName == "degap.seqs")                    {       command = new DegapSeqsCommand(optionString);                           }
                else if(commandName == "get.relabund")                  {       command = new GetRelAbundCommand(optionString);                         }
+               else if(commandName == "sens.spec")                             {       command = new SensSpecCommand(optionString);                            }
                else                                                                                    {       command = new NoCommand(optionString);                                          }
 
                return command;