]> git.donarmstrong.com Git - mothur.git/blobdiff - commandfactory.hpp
fixes while testing 1.33.0
[mothur.git] / commandfactory.hpp
index 8b08c006312240676e1e1466a0470c7f3aa11eae..b1db1921a3a074ae059f8341570aa28477ef0cc0 100644 (file)
@@ -26,14 +26,17 @@ public:
        bool isValidCommand(string);\r
        bool isValidCommand(string, string);\r
        void printCommands(ostream&);\r
-       void setOutputDirectory(string o)               {       outputDir = o;  m->setOutputDir(o);     }\r
-       void setInputDirectory(string i)                {       inputDir = i;           }\r
+    void printCommandsCategories(ostream&);\r
+       void setOutputDirectory(string o)               {       if(m->dirCheck(o) || (o == "")) {  outputDir = o; m->setOutputDir(o); } }\r
+       void setInputDirectory(string i)                {       if(m->dirCheck(i) || (i == "")) {  inputDir = i;        }       }\r
        void setLogfileName(string n, bool a)   {       logFileName = n;  append = a;           }\r
        string getLogfileName()                                 {       return logFileName;     }\r
        bool getAppend()                                                {       return append;                  }\r
        string getOutputDir()                                   {       return outputDir;               }\r
+    string getInputDir()                                       {       return inputDir;                }\r
        bool MPIEnabled(string);\r
-\r
+       map<string, string> getListCommands()   {       return commands;                }\r
+       \r
 private:\r
        Command* command;\r
        Command* shellcommand;\r
@@ -47,6 +50,8 @@ private:
        string outputDir, inputDir, logFileName;\r
        bool append;\r
        \r
+    int checkForRedirects(string);\r
+    \r
        static CommandFactory* _uniqueInstance;\r
        CommandFactory( const CommandFactory& ); // Disable copy constructor\r
        void operator=( const CommandFactory& ); // Disable assignment operator\r