]> git.donarmstrong.com Git - mothur.git/blobdiff - nocommands.cpp
added template=self capability to chimers.slayer, worked on corr.axes and added accno...
[mothur.git] / nocommands.cpp
index 974fce491c37f89d71ed8779d7d58f29a0eacc5e..eab873ba1eec6bc6a01b748f4ce6b441c9e1f4f1 100644 (file)
@@ -9,9 +9,42 @@
 
 #include "nocommands.h"
 
+//**********************************************************************************************************************
+vector<string> NoCommand::getValidParameters(){        
+       try {
+               vector<string> myArray; 
+               return myArray;
+       }
+       catch(exception& e) {
+               m->errorOut(e, "NoCommand", "getValidParameters");
+               exit(1);
+       }
+}
+//**********************************************************************************************************************
+vector<string> NoCommand::getRequiredParameters(){     
+       try {
+               vector<string> myArray;
+               return myArray;
+       }
+       catch(exception& e) {
+               m->errorOut(e, "NoCommand", "getRequiredParameters");
+               exit(1);
+       }
+}
+//**********************************************************************************************************************
+vector<string> NoCommand::getRequiredFiles(){  
+       try {
+               vector<string> myArray;
+               return myArray;
+       }
+       catch(exception& e) {
+               m->errorOut(e, "NoCommand", "getRequiredFiles");
+               exit(1);
+       }
+}
 //**********************************************************************************************************************
 
-NoCommand::NoCommand(){}
+NoCommand::NoCommand(string option)  {}
 
 //**********************************************************************************************************************
 
@@ -21,8 +54,11 @@ NoCommand::~NoCommand(){}
 
 int NoCommand::execute(){
        //Could choose to give more help here?fdsah
-       cout << "Invalid command." << "\n";
-       cout << "For more information on command parameters use the help() command." << "\n";
+       cout << "Invalid command.\n";
+   
+               CommandFactory* valid =  CommandFactory::getInstance();
+       valid->printCommands(cout);
+       
        return 0;
 }