X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=mothurout.h;h=0e31f8414a3a3477c1d8ab928d79aee0ccdc9957;hb=15b252e317fde72ce0a5de8776cb88112e0ed2b6;hp=e1c8222ae1938e8b63422cc9ee6567d309b668f5;hpb=57b3c96832667c1b70d4d526331f52e3d49e8237;p=mothur.git diff --git a/mothurout.h b/mothurout.h index e1c8222..0e31f84 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,7 +128,9 @@ class MothurOut { void splitAtDash(string&, set&); void splitAtDash(string&, vector&); void splitAtChar(string&, vector&, char); + void splitAtChar(string&, string&, char); int removeConfidences(string&); + string makeList(vector&); //math operation int factorial(int num); @@ -138,7 +141,7 @@ class MothurOut { int getRandomIndex(int); //highest int control_pressed; - bool executing, runParse, jumble, gui, mothurCalling; + bool executing, runParse, jumble, gui, mothurCalling, debug; //current files - if you add a new type you must edit optionParser->getParameters, get.current command and mothurOut->printCurrentFiles/clearCurrentFiles. string getPhylipFile() { return phylipfile; } @@ -161,6 +164,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 +187,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,10 +221,12 @@ class MothurOut { taxonomyfile = ""; processors = "1"; flowfile = ""; + biomfile = ""; gui = false; printedHeaders = false; commandInputsConvertError = false; mothurCalling = false; + debug = false; sharedHeaderMode = ""; } ~MothurOut(); @@ -228,7 +235,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;