X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=rarefactcommand.cpp;h=b8c1c6f1a6420f8a139eb5c71b0320b87277035e;hb=2bb9267aa4b4ecdf8488b06605cc9f3f36fa4332;hp=8d1cfc864d35d12d2127672f68af60802cd8b02d;hpb=1b0bddfbf4ac5df7e2dad03c8a5350e71b052f78;p=mothur.git diff --git a/rarefactcommand.cpp b/rarefactcommand.cpp index 8d1cfc8..b8c1c6f 100644 --- a/rarefactcommand.cpp +++ b/rarefactcommand.cpp @@ -253,17 +253,17 @@ RareFactCommand::RareFactCommand(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, "iters", false); if (temp == "not found") { temp = "1000"; } - convert(temp, nIters); + m->mothurConvert(temp, nIters); temp = validParameter.validFile(parameters, "processors", false); if (temp == "not found"){ temp = m->getProcessors(); } m->setProcessors(temp); - convert(temp, processors); + m->mothurConvert(temp, processors); temp = validParameter.validFile(parameters, "groupmode", false); if (temp == "not found") { temp = "T"; } groupMode = m->isTrue(temp);