X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=mothurout.h;h=9ce698be4e1963e6af9abee67673ded3e1743fde;hb=4418e128575c1d667720090d7b45d9b48de81a3a;hp=e1c8222ae1938e8b63422cc9ee6567d309b668f5;hpb=57b3c96832667c1b70d4d526331f52e3d49e8237;p=mothur.git diff --git a/mothurout.h b/mothurout.h index e1c8222..9ce698b 100644 --- a/mothurout.h +++ b/mothurout.h @@ -65,7 +65,7 @@ class MothurOut { vector getAllGroups() { sort(namesOfGroups.begin(), namesOfGroups.end()); return namesOfGroups; } vector Treenames; - map names; + //map names; vector binLabelsInFile; vector currentBinLabels; string saveNextLabel, argv, sharedHeaderMode; @@ -73,6 +73,7 @@ class MothurOut { //functions from mothur.h //file operations + bool dirCheck(string&); //completes path, appends appropriate / or \, makes sure dir is writable. vector divideFile(string, int&); int divideFile(string, int&, vector&); vector setFilePosEachLine(string, int&); @@ -127,6 +128,7 @@ class MothurOut { void splitAtDash(string&, set&); void splitAtDash(string&, vector&); void splitAtChar(string&, vector&, char); + void splitAtChar(string&, string&, char); int removeConfidences(string&); //math operation @@ -161,6 +163,7 @@ class MothurOut { string getAccnosFile() { return accnosfile; } string getTaxonomyFile() { return taxonomyfile; } string getFlowFile() { return flowfile; } + string getBiomFile() { return biomfile; } string getProcessors() { return processors; } void setListFile(string f) { listfile = getFullPathName(f); } @@ -183,6 +186,7 @@ class MothurOut { void setAccnosFile(string f) { accnosfile = getFullPathName(f); } void setTaxonomyFile(string f) { taxonomyfile = getFullPathName(f); } void setFlowFile(string f) { flowfile = getFullPathName(f); } + void setBiomFile(string f) { biomfile = getFullPathName(f); } void setProcessors(string p) { processors = p; } void printCurrentFiles(); @@ -216,6 +220,7 @@ class MothurOut { taxonomyfile = ""; processors = "1"; flowfile = ""; + biomfile = ""; gui = false; printedHeaders = false; commandInputsConvertError = false; @@ -228,7 +233,7 @@ class MothurOut { string defaultPath, outputDir; string releaseDate, version; - string accnosfile, phylipfile, columnfile, listfile, rabundfile, sabundfile, namefile, groupfile, designfile, taxonomyfile; + string accnosfile, phylipfile, columnfile, listfile, rabundfile, sabundfile, namefile, groupfile, designfile, taxonomyfile, biomfile; string orderfile, treefile, sharedfile, ordergroupfile, relabundfile, fastafile, qualfile, sfffile, oligosfile, processors, flowfile; vector Groups;