]> git.donarmstrong.com Git - mothur.git/blobdiff - commandfactory.cpp
modified sequence class to read fasta files with comments. this required modification...
[mothur.git] / commandfactory.cpp
index 5f07abb59e03e161bd46bc60065eb15e37107a06..a3858639a1f78d633e9c1537054978bac4e4d499 100644 (file)
@@ -58,6 +58,8 @@
 #include "getsharedotucommand.h"
 #include "getlistcountcommand.h"
 #include "hclustercommand.h"
+#include "classifyseqscommand.h"
+#include "phylotypecommand.h"
 
 /***********************************************************/
 
@@ -111,11 +113,12 @@ CommandFactory::CommandFactory(){
        commands["remove.seqs"]                 = "get.seqs";
        commands["system"]                              = "system";
        commands["align.check"]                 = "align.check";
-       commands["get.sharedotu"]               = "get.sharedotu";
-       commands["get.listcount"]               = "get.listcount";
+       commands["get.sharedseqs"]              = "get.sharedseqs";
+       commands["get.otulist"]                 = "get.otulist";
        commands["quit"]                                = "quit"; 
-       
        commands["hcluster"]                    = "hcluster"; 
+       commands["classify.seqs"]               = "classify.seqs"; 
+       commands["phylotype"]                   = "phylotype";
 
 }
 /***********************************************************/
@@ -178,10 +181,11 @@ Command* CommandFactory::getCommand(string commandName, string optionString){
                else if(commandName == "merge.files")                   {       command = new MergeFileCommand(optionString);                   }
                else if(commandName == "system")                                {       command = new SystemCommand(optionString);                              }
                else if(commandName == "align.check")                   {       command = new AlignCheckCommand(optionString);                  }
-               else if(commandName == "get.sharedotu")                 {       command = new GetSharedOTUCommand(optionString);                }
-               else if(commandName == "get.listcount")                 {       command = new GetListCountCommand(optionString);                }
-               
+               else if(commandName == "get.sharedseqs")                {       command = new GetSharedOTUCommand(optionString);                }
+               else if(commandName == "get.otulist")                   {       command = new GetListCountCommand(optionString);                }
                else if(commandName == "hcluster")                              {       command = new HClusterCommand(optionString);                    }
+               else if(commandName == "classify.seqs")                 {       command = new ClassifySeqsCommand(optionString);                }
+               else if(commandName == "phylotype")                             {       command = new PhylotypeCommand(optionString);                   }
                else                                                                                    {       command = new NoCommand(optionString);                                  }
 
                return command;
@@ -191,7 +195,22 @@ Command* CommandFactory::getCommand(string commandName, string optionString){
                exit(1);
        }
 }
+/***********************************************************/
+//This function is used to interrupt a command
+Command* CommandFactory::getCommand(){
+       try {
+               delete command;   //delete the old command
 
+               string s = "";
+           command = new NoCommand(s);
+       
+               return command;
+       }
+       catch(exception& e) {
+               errorOut(e, "CommandFactory", "getCommand");
+               exit(1);
+       }
+}
 /***********************************************************************/
 bool CommandFactory::isValidCommand(string command) {
        try {