X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=mothurout.cpp;h=20a7b5235029b6d7908ca0f23f119c3c38d095f1;hb=8dd3c225255d7084e3aff8740aa4f1f1cabb367a;hp=9dcdc80e761f1483059297dbcd996a0a06b43e5b;hpb=0ca63a8165baa0afa459e644ebe140ba496d5ba0;p=mothur.git diff --git a/mothurout.cpp b/mothurout.cpp index 9dcdc80..20a7b52 100644 --- a/mothurout.cpp +++ b/mothurout.cpp @@ -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 } }