X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=mothurout.h;h=7b71fcfbd48c823db529f0bc8d1a54f78422543d;hb=1c898913f53fe4c6574102896b967d9347d1b42a;hp=6654455063c37b56030a89c09c8d6ee71dcdf4be;hpb=ca9ac1d80c62f57270b0dcd49410ebe08a8aecd6;p=mothur.git diff --git a/mothurout.h b/mothurout.h index 6654455..7b71fcf 100644 --- a/mothurout.h +++ b/mothurout.h @@ -44,6 +44,7 @@ class MothurOut { //functions from mothur.h //file operations vector divideFile(string, int&); + int divideFile(string, int&, vector&); vector setFilePosEachLine(string, int&); vector setFilePosFasta(string, int&); string sortFile(string, string); @@ -65,6 +66,8 @@ class MothurOut { void gobble(istream&); void gobble(istringstream&); map readNames(string); + int readNames(string, map&); + int readNames(string, vector&, map&); //searchs and checks bool checkReleaseVersion(ifstream&, string); @@ -75,6 +78,7 @@ class MothurOut { int getNumSeqs(ifstream&); int getNumNames(string); bool isTrue(string); + bool isContainingOnlyDigits(string); //string manipulation @@ -94,7 +98,7 @@ class MothurOut { unsigned int fromBase36(string); int control_pressed; - bool executing, runParse, jumble; + bool executing, runParse, jumble, gui; //current files - if you add a new type you must edit optionParser->getParameters, get.current command and mothurOut->printCurrentFiles/clearCurrentFiles. string getPhylipFile() { return phylipfile; } @@ -116,6 +120,7 @@ class MothurOut { string getOligosFile() { return oligosfile; } string getAccnosFile() { return accnosfile; } string getTaxonomyFile() { return taxonomyfile; } + string getFlowFile() { return flowfile; } string getProcessors() { return processors; } void setListFile(string f) { listfile = getFullPathName(f); } @@ -137,9 +142,11 @@ class MothurOut { void setOligosFile(string f) { oligosfile = getFullPathName(f); } void setAccnosFile(string f) { accnosfile = getFullPathName(f); } void setTaxonomyFile(string f) { taxonomyfile = getFullPathName(f); } + void setFlowFile(string f) { flowfile = getFullPathName(f); } void setProcessors(string p) { processors = p; } void printCurrentFiles(); + bool hasCurrentFiles(); void clearCurrentFiles(); private: @@ -168,6 +175,8 @@ class MothurOut { accnosfile = ""; taxonomyfile = ""; processors = "1"; + flowfile = ""; + gui = false; }; ~MothurOut(); @@ -176,7 +185,7 @@ class MothurOut { string releaseDate, version; string accnosfile, phylipfile, columnfile, listfile, rabundfile, sabundfile, namefile, groupfile, designfile, taxonomyfile; - string orderfile, treefile, sharedfile, ordergroupfile, relabundfile, fastafile, qualfile, sfffile, oligosfile, processors; + string orderfile, treefile, sharedfile, ordergroupfile, relabundfile, fastafile, qualfile, sfffile, oligosfile, processors, flowfile; ofstream out;