]> git.donarmstrong.com Git - mothur.git/blobdiff - helpcommand.cpp
added design parameter to the indicator command
[mothur.git] / helpcommand.cpp
index 36ce2b760e266a790bba56e9b4d5adf5f5b493a5..aeb7efc0b77e0ee0a04e5310af8d81c0049e72a7 100644 (file)
@@ -9,6 +9,40 @@
 
 #include "helpcommand.h"
 
+//**********************************************************************************************************************
+vector<string> HelpCommand::getValidParameters(){      
+       try {
+               
+               vector<string> myArray; 
+               return myArray;
+       }
+       catch(exception& e) {
+               m->errorOut(e, "HelpCommand", "getValidParameters");
+               exit(1);
+       }
+}
+//**********************************************************************************************************************
+vector<string> HelpCommand::getRequiredParameters(){   
+       try {
+               vector<string> myArray;
+               return myArray;
+       }
+       catch(exception& e) {
+               m->errorOut(e, "HelpCommand", "getRequiredParameters");
+               exit(1);
+       }
+}
+//**********************************************************************************************************************
+vector<string> HelpCommand::getRequiredFiles(){        
+       try {
+               vector<string> myArray;
+               return myArray;
+       }
+       catch(exception& e) {
+               m->errorOut(e, "HelpCommand", "getRequiredFiles");
+               exit(1);
+       }
+}
 //**********************************************************************************************************************
 
 HelpCommand::HelpCommand(string option)  {
@@ -28,6 +62,7 @@ int HelpCommand::execute(){
        m->mothurOut("For more information about a specific command type 'commandName(help)' i.e. 'read.dist(help)'"); m->mothurOutEndLine();
        
        m->mothurOutEndLine(); m->mothurOut("For further assistance please refer to the Mothur manual on our wiki at http://www.mothur.org/wiki, or contact Pat Schloss at mothur.bugs@gmail.com.\n");
+       
        return 0;
 }