X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=mothurout.h;h=47e5ca45cf52c61f8c14ce55c2e3c77dc83003c1;hb=1bf53bca7e26bf091588bc8ca6e68cbfae1df6fe;hp=8ac84007de59225ccffb9642a4d0dd023818e40a;hpb=a150db3c2bfd7b76420048a1e94ebe397f2c6045;p=mothur.git diff --git a/mothurout.h b/mothurout.h index 8ac8400..47e5ca4 100644 --- a/mothurout.h +++ b/mothurout.h @@ -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 Treenames; map names; vector namesOfGroups; - string saveNextLabel, argv; + vector binLabelsInFile; + vector currentBinLabels; + string saveNextLabel, argv, sharedHeaderMode; + bool printedHeaders; //functions from mothur.h //file operations @@ -66,7 +70,9 @@ class MothurOut { void gobble(istream&); void gobble(istringstream&); map readNames(string); + int readNames(string, map&); int readNames(string, vector&, map&); + void mothurRemove(string); //searchs and checks bool checkReleaseVersion(ifstream&, string); @@ -95,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; @@ -176,7 +183,9 @@ class MothurOut { processors = "1"; flowfile = ""; gui = false; - }; + printedHeaders = false; + sharedHeaderMode = ""; + } ~MothurOut(); string logFileName;