]> git.donarmstrong.com Git - mothur.git/blobdiff - mothurout.h
changed normalize.shared and sub.sample commands to fix bug in normalize.shared and...
[mothur.git] / mothurout.h
index 7b71fcfbd48c823db529f0bc8d1a54f78422543d..47e5ca45cf52c61f8c14ce55c2e3c77dc83003c1 100644 (file)
@@ -12,7 +12,6 @@
 
 #include "mothur.h"
 
-
 /***********************************************/
 
 class MothurOut {
@@ -21,8 +20,10 @@ class MothurOut {
                static MothurOut* getInstance();
                void setFileName(string);
                
-               void mothurOut(string);
-               void mothurOutEndLine();
+               void mothurOut(string); //writes to cout and the logfile
+               void mothurOutEndLine(); //writes to cout and the logfile
+               void mothurOut(string, ofstream&); //writes to the ofstream, cout and the logfile
+               void mothurOutEndLine(ofstream&); //writes to the ofstream, cout and the logfile
                void mothurOutJustToLog(string);
                void errorOut(exception&, string, string);
                void closeLog();
@@ -39,7 +40,10 @@ class MothurOut {
                vector<string> Treenames;
                map<string, string> names;
                vector<string> namesOfGroups;
-               string saveNextLabel, argv;
+               vector<string> binLabelsInFile;
+               vector<string> currentBinLabels;
+               string saveNextLabel, argv, sharedHeaderMode;
+               bool printedHeaders;
                
                //functions from mothur.h
                //file operations
@@ -68,6 +72,7 @@ class MothurOut {
                map<string, int> readNames(string);
                int readNames(string, map<string, string>&);
                int readNames(string, vector<seqPriorityNode>&, map<string, string>&);
+               void mothurRemove(string);
                
                //searchs and checks
                bool checkReleaseVersion(ifstream&, string);
@@ -96,6 +101,7 @@ class MothurOut {
                float ceilDist(float, int);
                float roundDist(float, int);
                unsigned int fromBase36(string);
+               int getRandomIndex(int); //highest
 
                int control_pressed;
                bool executing, runParse, jumble, gui;
@@ -177,7 +183,9 @@ class MothurOut {
                        processors = "1";
                        flowfile = "";
                        gui = false;
-               };
+                       printedHeaders = false;
+                       sharedHeaderMode = "";
+               }
                ~MothurOut();
 
                string logFileName;