]> git.donarmstrong.com Git - mothur.git/blobdiff - mothurout.h
fixed craig nelsons weighted bug and paralellized parsimony
[mothur.git] / mothurout.h
index 2244eeef21b571ed94bcd8a12820e76416e5b7b8..efe1294245d915a66dc76e0baea439b8cf9caa1a 100644 (file)
@@ -12,6 +12,7 @@
 
 #include "mothur.h"
 
+
 /***********************************************/
 
 class MothurOut {
@@ -27,6 +28,8 @@ class MothurOut {
                void closeLog();
                string getDefaultPath() { return defaultPath; }
                void setDefaultPath(string);
+               string getOutputDir() { return outputDir; }
+               void setOutputDir(string);
                
                string getReleaseDate() { return releaseDate; }
                void setReleaseDate(string r) { releaseDate = r; }
@@ -86,7 +89,6 @@ class MothurOut {
                int control_pressed;
                bool executing;
                
-
        private:
                static MothurOut* _uniqueInstance;
                MothurOut( const MothurOut& ); // Disable copy constructor
@@ -95,7 +97,7 @@ class MothurOut {
                ~MothurOut();
 
                string logFileName;
-               string defaultPath;
+               string defaultPath, outputDir;
                string releaseDate, version;
                
                ofstream out;