]> git.donarmstrong.com Git - mothur.git/blobdiff - sequence.cpp
moved utilities out of mothur.h and into mothurOut class.
[mothur.git] / sequence.cpp
index 38e9b6230838424dd136562111f25967f6822099..04f97a8c2e22e0ccef1f8322ec23be45615b6380 100644 (file)
@@ -253,7 +253,7 @@ string Sequence::getCommentString(ifstream& fastaFile) {
                while(fastaFile){
                        letter=fastaFile.get();
                        if((letter == '\r') || (letter == '\n')){  
-                               gobble(fastaFile);  //in case its a \r\n situation
+                               m->gobble(fastaFile);  //in case its a \r\n situation
                                break;
                        }
                }
@@ -302,7 +302,7 @@ string Sequence::getCommentString(istringstream& fastaFile) {
                while(fastaFile){
                        letter=fastaFile.get();
                        if((letter == '\r') || (letter == '\n')){  
-                               gobble(fastaFile);  //in case its a \r\n situation
+                               m->gobble(fastaFile);  //in case its a \r\n situation
                                break;
                        }
                }