]> git.donarmstrong.com Git - mothur.git/blobdiff - mothurout.cpp
fixed bug with shhh.flow from file path name in write functions, added "smart" featur...
[mothur.git] / mothurout.cpp
index 9dcdc80e761f1483059297dbcd996a0a06b43e5b..20a7b5235029b6d7908ca0f23f119c3c38d095f1 100644 (file)
@@ -2152,7 +2152,7 @@ int MothurOut::removeConfidences(string& tax) {
                                int pos2 = taxon.find_last_of(')');
                                if (pos2 != -1) {
                                        string confidenceScore = taxon.substr(pos+1, (pos2-(pos+1)));
-                                       if (isContainingOnlyDigits(confidenceScore)) {
+                                       if (isNumeric1(confidenceScore)) {
                                                taxon = taxon.substr(0, pos); //rip off confidence 
                                        }
                                }