X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=commandfactory.cpp;h=8056227c3bce48545f7422502a4a7cbda163201f;hb=64eee3a595ae53817f52807d7393b22e74e31f56;hp=a559c81a4fc5a5703858be458d3e472420723f27;hpb=986663e2220f6b043ee83d1699cfa081dc49cbed;p=mothur.git diff --git a/commandfactory.cpp b/commandfactory.cpp index a559c81..8056227 100644 --- a/commandfactory.cpp +++ b/commandfactory.cpp @@ -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;