]> git.donarmstrong.com Git - mothur.git/blob - mothurout.h
changes while testing
[mothur.git] / mothurout.h
1 #ifndef MOTHUROUT_H
2 #define MOTHUROUT_H
3
4 /*
5  *  mothurOut.h
6  *  Mothur
7  *
8  *  Created by westcott on 2/25/10.
9  *  Copyright 2010 Schloss Lab. All rights reserved.
10  *
11  */
12
13 #include "mothur.h"
14
15 /***********************************************/
16 struct logger {
17     
18     logger() {}
19     ~logger() {}
20     
21     template< class T >
22     logger& operator <<( const T& o ) {
23         cout << o; return *this;
24     }
25     
26     logger& operator<<(ostream& (*m)(ostream&) ) {
27         cout << m; return *this;
28     }
29     
30 }; 
31 /***********************************************/
32
33 class MothurOut {
34         
35         public:
36                 static MothurOut* getInstance();
37                 void setFileName(string);
38                 
39                 void mothurOut(string); //writes to cout and the logfile
40                 void mothurOutEndLine(); //writes to cout and the logfile
41                 void mothurOut(string, ofstream&); //writes to the ofstream, cout and the logfile
42                 void mothurOutEndLine(ofstream&); //writes to the ofstream, cout and the logfile
43         void mothurOutJustToScreen(string); //writes to cout
44                 void mothurOutJustToLog(string);
45                 void errorOut(exception&, string, string);
46                 void closeLog();
47                 string getDefaultPath() { return defaultPath; }
48                 void setDefaultPath(string);
49                 string getOutputDir() { return outputDir; }
50                 void setOutputDir(string);
51                 
52                 string getReleaseDate() { return releaseDate; }
53                 void setReleaseDate(string r) { releaseDate = r; }
54                 string getVersion() { return version; }
55                 void setVersion(string r) { version = r; }
56         
57                 void addGroup(string g) { Groups.push_back(g); }
58                 void setGroups(vector<string>& g) { sort(g.begin(), g.end()); Groups = g; }
59                 void clearGroups() { Groups.clear(); }
60             int getNumGroups() { return Groups.size(); }
61                 vector<string> getGroups() { sort(Groups.begin(), Groups.end()); return Groups; }
62                 void addAllGroup(string g) { namesOfGroups.push_back(g); }
63                 void setAllGroups(vector<string>& g) { sort(g.begin(), g.end()); namesOfGroups = g; }
64                 void clearAllGroups() { namesOfGroups.clear(); }
65                 int getNumAllGroups() { return namesOfGroups.size(); }
66         
67                 vector<string> getAllGroups() { sort(namesOfGroups.begin(), namesOfGroups.end()); return namesOfGroups; }
68                 vector<string> Treenames;
69                 //map<string, string> names;
70                 vector<string> binLabelsInFile;
71                 vector<string> currentBinLabels;
72                 string saveNextLabel, argv, sharedHeaderMode, groupMode;
73                 bool printedHeaders, commandInputsConvertError, changedSeqNames, modifyNames;
74                 
75                 //functions from mothur.h
76                 //file operations
77         bool dirCheck(string&); //completes path, appends appropriate / or \, makes sure dir is writable.
78                 vector<unsigned long long> divideFile(string, int&); //divides splitting unevenness by sequence
79         vector<unsigned long long> divideFilePerLine(string, int&); //divides splitting unevenness at line breaks
80                 int divideFile(string, int&, vector<string>&);
81                 vector<unsigned long long> setFilePosEachLine(string, int&);
82                 vector<unsigned long long> setFilePosFasta(string, int&);
83                 string sortFile(string, string);
84                 int appendFiles(string, string);
85         int appendFilesWithoutHeaders(string, string);
86                 int renameFile(string, string); //oldname, newname
87                 string getFullPathName(string);
88         string findProgramPath(string programName);
89                 string hasPath(string);
90                 string getExtension(string);
91                 string getPathName(string);
92                 string getSimpleName(string);
93                 string getRootName(string);
94                 bool isBlank(string);
95                 int openOutputFile(string, ofstream&);
96                 int openOutputFileAppend(string, ofstream&);
97                 int openInputFile(string, ifstream&);
98                 int openInputFile(string, ifstream&, string); //no error given 
99                 string getline(ifstream&);
100                 string getline(istringstream&);
101                 void gobble(istream&);
102                 void gobble(istringstream&);
103         vector<string> splitWhiteSpace(string& rest, char[], int);
104         vector<string> splitWhiteSpace(string);
105         set<string> readAccnos(string);
106         int readAccnos(string, vector<string>&);
107         map<string, int> readNames(string);
108         map<string, int> readNames(string, unsigned long int&);
109         int readTax(string, map<string, string>&);
110         int readNames(string, map<string, string>&, map<string, int>&);
111                 int readNames(string, map<string, string>&);
112         int readNames(string, map<string, string>&, bool);
113         int readNames(string, map<string, string>&, int);
114                 int readNames(string, map<string, vector<string> >&);
115                 int readNames(string, vector<seqPriorityNode>&, map<string, string>&);
116                 int mothurRemove(string);
117                 bool mothurConvert(string, int&); //use for converting user inputs. Sets commandInputsConvertError to true if error occurs. Engines check this.
118         bool mothurConvert(string, intDist&); //use for converting user inputs. Sets commandInputsConvertError to true if error occurs. Engines check this.
119                 bool mothurConvert(string, float&); //use for converting user inputs. Sets commandInputsConvertError to true if error occurs. Engines check this.
120                 bool mothurConvert(string, double&); //use for converting user inputs. Sets commandInputsConvertError to true if error occurs. Engines check this.
121         
122                 
123                 //searchs and checks
124                 bool checkReleaseVersion(ifstream&, string);
125                 bool anyLabelsToProcess(string, set<string>&, string);
126                 bool inUsersGroups(vector<string>, vector<string>);
127         bool inUsersGroups(vector<int>, vector< vector<int> >);
128                 bool inUsersGroups(string, vector<string>);
129         bool inUsersGroups(int, vector<int>);
130                 void getNumSeqs(ifstream&, int&);
131                 int getNumSeqs(ifstream&);
132                 int getNumNames(string);
133                 int getNumChar(string, char);
134                 bool isTrue(string);
135                 bool isContainingOnlyDigits(string);
136                 bool isNumeric1(string);
137         
138                 
139                 //string manipulation
140                 void splitAtEquals(string&, string&);
141                 void splitAtComma(string&, string&);    
142                 void splitAtComma(string&, vector<string>&);
143                 void splitAtDash(string&, set<int>&);
144                 void splitAtDash(string&, set<string>&);
145                 void splitAtDash(string&, vector<string>&);
146                 void splitAtChar(string&, vector<string>&, char);
147         void splitAtChar(string&, string&, char);
148         vector<string> splitWhiteSpaceWithQuotes(string);
149                 int removeConfidences(string&);
150         string removeQuotes(string);
151         string makeList(vector<string>&);
152         bool isSubset(vector<string>, vector<string>); //bigSet, subset
153         int checkName(string&);
154                 
155                 //math operation
156                 int factorial(int num);
157                 vector<vector<double> > binomial(int);
158                 float ceilDist(float, int);
159                 float roundDist(float, int);
160                 unsigned int fromBase36(string);
161                 int getRandomIndex(int); //highest
162         double getStandardDeviation(vector<int>&);
163         vector<double> getStandardDeviation(vector< vector<double> >&);
164         vector<double> getStandardDeviation(vector< vector<double> >&, vector<double>&);
165         vector<double> getAverages(vector< vector<double> >&);
166         double getAverage(vector<double>);
167         vector< vector<seqDist> > getStandardDeviation(vector< vector< vector<seqDist> > >&);
168         vector< vector<seqDist> > getStandardDeviation(vector< vector< vector<seqDist> > >&, vector< vector<seqDist> >&);
169         vector< vector<seqDist> > getAverages(vector< vector< vector<seqDist> > >&, string);
170         vector< vector<seqDist> > getAverages(vector< vector< vector<seqDist> > >&);
171
172                 int control_pressed;
173                 bool executing, runParse, jumble, gui, mothurCalling, debug;
174                 
175                 //current files - if you add a new type you must edit optionParser->getParameters, get.current and set.current commands and mothurOut->printCurrentFiles/clearCurrentFiles/getCurrentTypes. add a get and set function.
176                 string getPhylipFile()          { return phylipfile;            }
177                 string getColumnFile()          { return columnfile;            }
178                 string getListFile()            { return listfile;                      }
179                 string getRabundFile()          { return rabundfile;            }
180                 string getSabundFile()          { return sabundfile;            }
181                 string getNameFile()            { return namefile;                      }       
182                 string getGroupFile()           { return groupfile;                     }       
183                 string getOrderFile()           { return orderfile;                     }
184                 string getOrderGroupFile()      { return ordergroupfile;        }
185                 string getTreeFile()            { return treefile;                      }
186                 string getSharedFile()          { return sharedfile;            }
187                 string getRelAbundFile()        { return relabundfile;          }
188                 string getDesignFile()          { return designfile;            }
189                 string getFastaFile()           { return fastafile;                     }
190                 string getSFFFile()                     { return sfffile;                       }
191                 string getQualFile()            { return qualfile;                      }
192                 string getOligosFile()          { return oligosfile;            }
193                 string getAccnosFile()          { return accnosfile;            }
194                 string getTaxonomyFile()        { return taxonomyfile;          }
195                 string getFlowFile()            { return flowfile;                      }
196         string getBiomFile()            { return biomfile;                      }
197         string getCountTableFile()      { return counttablefile;        }
198         string getSummaryFile()     { return summaryfile;       }
199                 string getProcessors()          { return processors;            }
200                 
201                 void setListFile(string f)                      { listfile = getFullPathName(f);                        }
202                 void setTreeFile(string f)                      { treefile = getFullPathName(f);                        }
203                 void setGroupFile(string f)                     { groupfile = getFullPathName(f);       groupMode = "group";            }               
204                 void setPhylipFile(string f)            { phylipfile = getFullPathName(f);                      }
205                 void setColumnFile(string f)            { columnfile = getFullPathName(f);                      }
206                 void setNameFile(string f)                      { namefile = getFullPathName(f);                        }       
207                 void setRabundFile(string f)            { rabundfile = getFullPathName(f);                      }
208                 void setSabundFile(string f)            { sabundfile = getFullPathName(f);                      }
209                 void setSharedFile(string f)            { sharedfile = getFullPathName(f);                      }
210                 void setRelAbundFile(string f)          { relabundfile = getFullPathName(f);            }
211                 void setOrderFile(string f)                     { orderfile = getFullPathName(f);                       }
212                 void setOrderGroupFile(string f)        { ordergroupfile = getFullPathName(f);          }
213                 void setDesignFile(string f)            { designfile = getFullPathName(f);                      }
214                 void setFastaFile(string f)                     { fastafile = getFullPathName(f);                       }
215                 void setSFFFile(string f)                       { sfffile = getFullPathName(f);                         }
216                 void setQualFile(string f)                      { qualfile = getFullPathName(f);                        }
217                 void setOligosFile(string f)            { oligosfile = getFullPathName(f);                      }
218                 void setAccnosFile(string f)            { accnosfile = getFullPathName(f);                      }
219                 void setTaxonomyFile(string f)          { taxonomyfile = getFullPathName(f);            }
220                 void setFlowFile(string f)                      { flowfile = getFullPathName(f);                        }
221         void setBiomFile(string f)                      { biomfile = getFullPathName(f);                        }
222         void setSummaryFile(string f)           { summaryfile = getFullPathName(f);                     }
223         void setCountTableFile(string f)        { counttablefile = getFullPathName(f);  groupMode = "count";    }
224         void setProcessors(string p)            { processors = p; mothurOut("\nUsing " + toString(p) + " processors.\n");       }
225                 
226                 void printCurrentFiles();
227                 bool hasCurrentFiles();
228                 void clearCurrentFiles();
229         set<string> getCurrentTypes(); 
230                 
231         private:
232                 static MothurOut* _uniqueInstance;
233                 MothurOut( const MothurOut& ); // Disable copy constructor
234                 void operator=( const MothurOut& ); // Disable assignment operator
235                 MothurOut() { 
236                         control_pressed = false; defaultPath=""; 
237                         phylipfile = "";
238                         columnfile = "";
239                         listfile = "";
240                         rabundfile = "";
241                         sabundfile = "";
242                         namefile = "";
243                         groupfile = "";
244                         designfile = "";
245                         orderfile = "";
246                         treefile = "";
247                         sharedfile = "";
248                         ordergroupfile = "";
249                         relabundfile = "";
250                         fastafile = "";
251                         qualfile = "";
252                         sfffile = "";
253                         oligosfile = "";
254                         accnosfile = "";
255                         taxonomyfile = "";
256                         processors = "1";
257                         flowfile = "";
258             biomfile = "";
259             counttablefile = "";
260             summaryfile = "";
261                         gui = false;
262                         printedHeaders = false;
263                         commandInputsConvertError = false;
264             mothurCalling = false;
265             debug = false;
266                         sharedHeaderMode = "";
267             groupMode = "group";
268             changedSeqNames = false;
269             modifyNames = true;
270                 }
271                 ~MothurOut();
272
273                 string logFileName;
274                 string defaultPath, outputDir;
275                 string releaseDate, version;
276         
277                 string accnosfile, phylipfile, columnfile, listfile, rabundfile, sabundfile, namefile, groupfile, designfile, taxonomyfile, biomfile;
278                 string orderfile, treefile, sharedfile, ordergroupfile, relabundfile, fastafile, qualfile, sfffile, oligosfile, processors, flowfile, counttablefile, summaryfile;
279
280                 vector<string> Groups;
281                 vector<string> namesOfGroups;
282                 ofstream out;
283                 
284                 int mem_usage(double&, double&);
285
286 };
287 /***********************************************/
288
289 #endif
290