]> git.donarmstrong.com Git - mothur.git/blobdiff - commandfactory.cpp
added trim.seqs command
[mothur.git] / commandfactory.cpp
index a559c81a4fc5a5703858be458d3e472420723f27..8056227c3bce48545f7422502a4a7cbda163201f 100644 (file)
@@ -48,6 +48,7 @@
 #include "seqsummarycommand.h"
 #include "screenseqscommand.h"
 #include "reversecommand.h"
+#include "trimseqscommand.h"
 
 /***********************************************************/
 
@@ -106,6 +107,7 @@ Command* CommandFactory::getCommand(string commandName){
                else if(commandName == "summary.seqs")                  {       command = new SeqSummaryCommand();                      }
                else if(commandName == "screen.seqs")                   {       command = new ScreenSeqsCommand();                      }
                else if(commandName == "reverse.seqs")                  {       command = new ReverseSeqsCommand();                     }
+               else if(commandName == "trim.seqs")                             {       command = new TrimSeqsCommand();                        }
                else                                                                                    {       command = new NoCommand();                                      }
 
                return command;