X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;ds=sidebyside;f=commandfactory.cpp;h=ed6aebe7cadcf302c180a553ca5f586486371874;hb=8c548985e92f5be0bde10eddea89a6ae888b73da;hp=6e62995c32306cbcd0c9c9259ae0317a8ff706f9;hpb=fd282e6b4be2560f5b1bd154a9e8d24b798eefaf;p=mothur.git diff --git a/commandfactory.cpp b/commandfactory.cpp index 6e62995..ed6aebe 100644 --- a/commandfactory.cpp +++ b/commandfactory.cpp @@ -9,6 +9,7 @@ #include "command.hpp" #include "readdistcommand.h" +#include "readtreecommand.h" #include "readotucommand.h" #include "clustercommand.h" #include "parselistcommand.h" @@ -50,6 +51,7 @@ Command* CommandFactory::getCommand(string commandName){ if(commandName == "read.dist") { command = new ReadDistCommand(); } else if(commandName == "read.otu") { command = new ReadOtuCommand(); } + //else if(commandName == "read.tree") { command = new ReadTreeCommand(); } else if(commandName == "cluster") { command = new ClusterCommand(); } else if(commandName == "deconvolute") { command = new DeconvoluteCommand(); } else if(commandName == "help") { command = new HelpCommand(); }