X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=commandfactory.cpp;h=a559c81a4fc5a5703858be458d3e472420723f27;hb=986663e2220f6b043ee83d1699cfa081dc49cbed;hp=c9a3e6aab4841f8656e813f4acb9fc4e41817b60;hpb=4f4070ac3fbb5da75f834b48062e9123364b006e;p=mothur.git diff --git a/commandfactory.cpp b/commandfactory.cpp index c9a3e6a..a559c81 100644 --- a/commandfactory.cpp +++ b/commandfactory.cpp @@ -47,7 +47,7 @@ #include "getrabundcommand.h" #include "seqsummarycommand.h" #include "screenseqscommand.h" - +#include "reversecommand.h" /***********************************************************/ @@ -105,6 +105,7 @@ Command* CommandFactory::getCommand(string commandName){ else if(commandName == "align.seqs") { command = new AlignCommand(); } 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 { command = new NoCommand(); } return command;