]> git.donarmstrong.com Git - mothur.git/blobdiff - optionparser.cpp
moved utilities out of mothur.h and into mothurOut class.
[mothur.git] / optionparser.cpp
index c50d5a3107bb8c88f7dc251831873cfdd0d68e2b..08032b32b83556f7ace0b83e235e51121e80f399 100644 (file)
@@ -19,13 +19,13 @@ OptionParser::OptionParser(string option) {
                        string key, value;              
                        //reads in parameters and values
                        while((option.find_first_of(',') != -1)) {  //while there are parameters
-                               splitAtComma(value, option);
-                               splitAtEquals(key, value);
+                               m->splitAtComma(value, option);
+                               m->splitAtEquals(key, value);
                                parameters[key] = value;
                        }
                        
                        //in case there is no comma and to get last parameter after comma
-                       splitAtEquals(key, option);
+                       m->splitAtEquals(key, option);
                        parameters[key] = option;
                }
        }