X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=getoturepcommand.cpp;h=35437e760ac636e51cf9f960d8c36e8a6dfce47e;hb=d205e70ae86dbee2efc2df02f2717975854de6ba;hp=2f6f810e0add659c6c661cef7e383fd36b2f8ad2;hpb=4c5e7a20a03ddc6feb49ff9d21fcb4c79bc5508d;p=mothur.git diff --git a/getoturepcommand.cpp b/getoturepcommand.cpp index 2f6f810..35437e7 100644 --- a/getoturepcommand.cpp +++ b/getoturepcommand.cpp @@ -297,10 +297,10 @@ GetOTURepCommand::GetOTURepCommand(string option) { if ((weighted) && (namefile == "")) { m->mothurOut("You cannot set weighted to true unless you provide a namesfile."); m->mothurOutEndLine(); abort = true; } temp = validParameter.validFile(parameters, "precision", false); if (temp == "not found") { temp = "100"; } - convert(temp, precision); + m->mothurConvert(temp, precision); temp = validParameter.validFile(parameters, "cutoff", false); if (temp == "not found") { temp = "10.0"; } - convert(temp, cutoff); + m->mothurConvert(temp, cutoff); cutoff += (5 / (precision * 10.0)); } }