]> git.donarmstrong.com Git - mothur.git/blobdiff - mothur.cpp
modified read.otu and shared command
[mothur.git] / mothur.cpp
index 0314331287f0de7c466dc5cb4aacedece62fd56a..88caa25fd2a16375e6ad515e989cdf19ddcfc916 100644 (file)
@@ -17,6 +17,56 @@ GlobalData* GlobalData::_uniqueInstance = 0;
 
 int main(int argc, char *argv[]){
        try {
+               
+               //remove old logfile
+               string logFileName = "mothur.logFile";
+               remove(logFileName.c_str());
+               
+               //version
+               #if defined (__APPLE__) || (__MACH__) || (linux) || (__linux)
+                       #if defined (__APPLE__) || (__MACH__)
+                               mothurOutJustToLog("Mac version");
+                               mothurOutEndLine(); mothurOutEndLine();
+                       #else
+                               mothurOutJustToLog("Linux version");
+                               mothurOutEndLine(); mothurOutEndLine();
+                       #endif
+
+               #else
+                       mothurOutJustToLog("Windows version");
+                       mothurOutEndLine(); mothurOutEndLine();
+               #endif          
+
+               
+               //header
+               mothurOut("mothur v.1.4.1");
+               mothurOutEndLine();             
+               mothurOut("Last updated: 6/23/2009");
+               mothurOutEndLine();     
+               mothurOutEndLine();             
+               mothurOut("by");
+               mothurOutEndLine();             
+               mothurOut("Patrick D. Schloss");
+               mothurOutEndLine();
+               mothurOutEndLine();                     
+               mothurOut("Department of Microbiology");
+               mothurOutEndLine();             
+               mothurOut("pschloss@micro.umass.edu");
+               mothurOutEndLine();             
+               mothurOut("http://schloss.micro.umass.edu/mothur");
+               mothurOutEndLine();     
+               mothurOutEndLine();     
+               mothurOutEndLine();             
+               mothurOut("Distributed under the GNU General Public License");
+               mothurOutEndLine();
+               mothurOutEndLine();                     
+               mothurOut("Type 'help()' for information on the commands that are available");
+               mothurOutEndLine();
+               mothurOutEndLine();                     
+               mothurOut("Type 'quit()' to exit program");
+               mothurOutEndLine();     
+
+                               
                //srand(54321);
                srand( (unsigned)time( NULL ) );