]> git.donarmstrong.com Git - mothur.git/blobdiff - quitcommand.cpp
added clearcut source to mothur, fixed mislabeled sharedcalcs
[mothur.git] / quitcommand.cpp
index 99dc46be30ca9c282d82474e5021bdf4fc7f3c33..8e6fd15412167f9b2ae26eec7b9d93a8e19c6bd2 100644 (file)
 
 //**********************************************************************************************************************
 
-QuitCommand::QuitCommand(string option){
+QuitCommand::QuitCommand(string option) {
                abort = false;
                
                //allow user to run help
                if(option == "help") { help(); abort = true; }
-               
-               else if (option != "") { mothurOut("There are no valid parameters for the quit command."); mothurOutEndLine();  abort = true;  }
 
 }
 //**********************************************************************************************************************
 
 void QuitCommand::help(){
        try {
-                mothurOut("The quit command will terminate mothur and should be in the following format: \n"); 
-                mothurOut("quit() or quit\n\n");
+                m->mothurOut("The quit command will terminate mothur and should be in the following format: \n"); 
+                m->mothurOut("quit() or quit\n\n");
        }
        catch(exception& e) {
-               errorOut(e, "QuitCommand", "help");
+               m->errorOut(e, "QuitCommand", "help");
                exit(1);
        }
 }