X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=collectcommand.cpp;fp=collectcommand.cpp;h=e0d62dd5ddd7acd106d18af31de013f6fce9c462;hb=0ca63a8165baa0afa459e644ebe140ba496d5ba0;hp=a65b417ed8cfcb82ff11847c3a58633589ed6c41;hpb=1b0bddfbf4ac5df7e2dad03c8a5350e71b052f78;p=mothur.git diff --git a/collectcommand.cpp b/collectcommand.cpp index a65b417..e0d62dd 100644 --- a/collectcommand.cpp +++ b/collectcommand.cpp @@ -280,13 +280,13 @@ CollectCommand::CollectCommand(string option) { string temp; temp = validParameter.validFile(parameters, "freq", false); if (temp == "not found") { temp = "100"; } - convert(temp, freq); + m->mothurConvert(temp, freq); temp = validParameter.validFile(parameters, "abund", false); if (temp == "not found") { temp = "10"; } - convert(temp, abund); + m->mothurConvert(temp, abund); temp = validParameter.validFile(parameters, "size", false); if (temp == "not found") { temp = "0"; } - convert(temp, size); + m->mothurConvert(temp, size); } }