]> git.donarmstrong.com Git - mothur.git/blobdiff - nocommands.cpp
added pipeline commands which involved change to command factory and command class...
[mothur.git] / nocommands.cpp
index 1a01d3718f33fa02ee7f475323d704e135130fea..eab873ba1eec6bc6a01b748f4ce6b441c9e1f4f1 100644 (file)
@@ -9,6 +9,39 @@
 
 #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(string option)  {}