]> git.donarmstrong.com Git - mothur.git/blob - mothurout.h
fixed bug with windows version of trim.seqs when run with 1 processor. fixed file...
[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 mothurOutJustToLog(string);
44                 void errorOut(exception&, string, string);
45                 void closeLog();
46                 string getDefaultPath() { return defaultPath; }
47                 void setDefaultPath(string);
48                 string getOutputDir() { return outputDir; }
49                 void setOutputDir(string);
50                 
51                 string getReleaseDate() { return releaseDate; }
52                 void setReleaseDate(string r) { releaseDate = r; }
53                 string getVersion() { return version; }
54                 void setVersion(string r) { version = r; }
55         
56                 void addGroup(string g) { Groups.push_back(g); }
57                 void setGroups(vector<string>& g) { sort(g.begin(), g.end()); Groups = g; }
58                 void clearGroups() { Groups.clear(); }
59             int getNumGroups() { return Groups.size(); }
60                 vector<string> getGroups() { sort(Groups.begin(), Groups.end()); return Groups; }
61                 void addAllGroup(string g) { namesOfGroups.push_back(g); }
62                 void setAllGroups(vector<string>& g) { sort(g.begin(), g.end()); namesOfGroups = g; }
63                 void clearAllGroups() { namesOfGroups.clear(); }
64                 int getNumAllGroups() { return namesOfGroups.size(); }
65         
66                 vector<string> getAllGroups() { sort(namesOfGroups.begin(), namesOfGroups.end()); return namesOfGroups; }
67                 vector<string> Treenames;
68                 map<string, string> names;
69                 vector<string> binLabelsInFile;
70                 vector<string> currentBinLabels;
71                 string saveNextLabel, argv, sharedHeaderMode;
72                 bool printedHeaders, commandInputsConvertError;
73                 
74                 //functions from mothur.h
75                 //file operations
76         bool dirCheck(string&); //completes path, appends appropriate / or \, makes sure dir is writable.
77                 vector<unsigned long long> divideFile(string, int&);
78                 int divideFile(string, int&, vector<string>&);
79                 vector<unsigned long long> setFilePosEachLine(string, int&);
80                 vector<unsigned long long> setFilePosFasta(string, int&);
81                 string sortFile(string, string);
82                 int appendFiles(string, string);
83                 int renameFile(string, string); //oldname, newname
84                 string getFullPathName(string);
85                 string hasPath(string);
86                 string getExtension(string);
87                 string getPathName(string);
88                 string getSimpleName(string);
89                 string getRootName(string);
90                 bool isBlank(string);
91                 int openOutputFile(string, ofstream&);
92                 int openOutputFileAppend(string, ofstream&);
93                 int openInputFile(string, ifstream&);
94                 int openInputFile(string, ifstream&, string); //no error given 
95                 string getline(ifstream&);
96                 string getline(istringstream&);
97                 void gobble(istream&);
98                 void gobble(istringstream&);
99                 map<string, int> readNames(string);
100                 int readNames(string, map<string, string>&);
101                 int readNames(string, map<string, vector<string> >&);
102                 int readNames(string, vector<seqPriorityNode>&, map<string, string>&);
103                 int mothurRemove(string);
104                 bool mothurConvert(string, int&); //use for converting user inputs. Sets commandInputsConvertError to true if error occurs. Engines check this.
105                 bool mothurConvert(string, float&); //use for converting user inputs. Sets commandInputsConvertError to true if error occurs. Engines check this.
106                 bool mothurConvert(string, double&); //use for converting user inputs. Sets commandInputsConvertError to true if error occurs. Engines check this.
107         
108                 
109                 //searchs and checks
110                 bool checkReleaseVersion(ifstream&, string);
111                 bool anyLabelsToProcess(string, set<string>&, string);
112                 bool inUsersGroups(vector<string>, vector<string>);
113                 bool inUsersGroups(string, vector<string>);
114                 void getNumSeqs(ifstream&, int&);
115                 int getNumSeqs(ifstream&);
116                 int getNumNames(string);
117                 int getNumChar(string, char);
118                 bool isTrue(string);
119                 bool isContainingOnlyDigits(string);
120                 bool isNumeric1(string);
121         
122                 
123                 //string manipulation
124                 void splitAtEquals(string&, string&);
125                 void splitAtComma(string&, string&);    
126                 void splitAtComma(string&, vector<string>&);
127                 void splitAtDash(string&, set<int>&);
128                 void splitAtDash(string&, set<string>&);
129                 void splitAtDash(string&, vector<string>&);
130                 void splitAtChar(string&, vector<string>&, char);
131                 int removeConfidences(string&);
132                 
133                 //math operation
134                 int factorial(int num);
135                 vector<vector<double> > binomial(int);
136                 float ceilDist(float, int);
137                 float roundDist(float, int);
138                 unsigned int fromBase36(string);
139                 int getRandomIndex(int); //highest
140
141                 int control_pressed;
142                 bool executing, runParse, jumble, gui, mothurCalling;
143                 
144                 //current files - if you add a new type you must edit optionParser->getParameters, get.current command and mothurOut->printCurrentFiles/clearCurrentFiles.
145                 string getPhylipFile()          { return phylipfile;            }
146                 string getColumnFile()          { return columnfile;            }
147                 string getListFile()            { return listfile;                      }
148                 string getRabundFile()          { return rabundfile;            }
149                 string getSabundFile()          { return sabundfile;            }
150                 string getNameFile()            { return namefile;                      }       
151                 string getGroupFile()           { return groupfile;                     }       
152                 string getOrderFile()           { return orderfile;                     }
153                 string getOrderGroupFile()      { return ordergroupfile;        }
154                 string getTreeFile()            { return treefile;                      }
155                 string getSharedFile()          { return sharedfile;            }
156                 string getRelAbundFile()        { return relabundfile;          }
157                 string getDesignFile()          { return designfile;            }
158                 string getFastaFile()           { return fastafile;                     }
159                 string getSFFFile()                     { return sfffile;                       }
160                 string getQualFile()            { return qualfile;                      }
161                 string getOligosFile()          { return oligosfile;            }
162                 string getAccnosFile()          { return accnosfile;            }
163                 string getTaxonomyFile()        { return taxonomyfile;          }
164                 string getFlowFile()            { return flowfile;                      }
165                 string getProcessors()          { return processors;            }
166                 
167                 void setListFile(string f)                      { listfile = getFullPathName(f);                        }
168                 void setTreeFile(string f)                      { treefile = getFullPathName(f);                        }
169                 void setGroupFile(string f)                     { groupfile = getFullPathName(f);                       }               
170                 void setPhylipFile(string f)            { phylipfile = getFullPathName(f);                      }
171                 void setColumnFile(string f)            { columnfile = getFullPathName(f);                      }
172                 void setNameFile(string f)                      { namefile = getFullPathName(f);                        }       
173                 void setRabundFile(string f)            { rabundfile = getFullPathName(f);                      }
174                 void setSabundFile(string f)            { sabundfile = getFullPathName(f);                      }
175                 void setSharedFile(string f)            { sharedfile = getFullPathName(f);                      }
176                 void setRelAbundFile(string f)          { relabundfile = getFullPathName(f);            }
177                 void setOrderFile(string f)                     { orderfile = getFullPathName(f);                       }
178                 void setOrderGroupFile(string f)        { ordergroupfile = getFullPathName(f);          }
179                 void setDesignFile(string f)            { designfile = getFullPathName(f);                      }
180                 void setFastaFile(string f)                     { fastafile = getFullPathName(f);                       }
181                 void setSFFFile(string f)                       { sfffile = getFullPathName(f);                         }
182                 void setQualFile(string f)                      { qualfile = getFullPathName(f);                        }
183                 void setOligosFile(string f)            { oligosfile = getFullPathName(f);                      }
184                 void setAccnosFile(string f)            { accnosfile = getFullPathName(f);                      }
185                 void setTaxonomyFile(string f)          { taxonomyfile = getFullPathName(f);            }
186                 void setFlowFile(string f)                      { flowfile = getFullPathName(f);                        }
187                 void setProcessors(string p)            { processors = p;                                                       }
188                 
189                 void printCurrentFiles();
190                 bool hasCurrentFiles();
191                 void clearCurrentFiles();
192                 
193         private:
194                 static MothurOut* _uniqueInstance;
195                 MothurOut( const MothurOut& ); // Disable copy constructor
196                 void operator=( const MothurOut& ); // Disable assignment operator
197                 MothurOut() { 
198                         control_pressed = false; defaultPath=""; 
199                         phylipfile = "";
200                         columnfile = "";
201                         listfile = "";
202                         rabundfile = "";
203                         sabundfile = "";
204                         namefile = "";
205                         groupfile = "";
206                         designfile = "";
207                         orderfile = "";
208                         treefile = "";
209                         sharedfile = "";
210                         ordergroupfile = "";
211                         relabundfile = "";
212                         fastafile = "";
213                         qualfile = "";
214                         sfffile = "";
215                         oligosfile = "";
216                         accnosfile = "";
217                         taxonomyfile = "";
218                         processors = "1";
219                         flowfile = "";
220                         gui = false;
221                         printedHeaders = false;
222                         commandInputsConvertError = false;
223             mothurCalling = false;
224                         sharedHeaderMode = "";
225                 }
226                 ~MothurOut();
227
228                 string logFileName;
229                 string defaultPath, outputDir;
230                 string releaseDate, version;
231         
232                 string accnosfile, phylipfile, columnfile, listfile, rabundfile, sabundfile, namefile, groupfile, designfile, taxonomyfile;
233                 string orderfile, treefile, sharedfile, ordergroupfile, relabundfile, fastafile, qualfile, sfffile, oligosfile, processors, flowfile;
234
235                 vector<string> Groups;
236                 vector<string> namesOfGroups;
237                 ofstream out;
238                 
239                 int mem_usage(double&, double&);
240
241 };
242 /***********************************************/
243
244 #endif
245