X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=clusterclassic.cpp;fp=clusterclassic.cpp;h=1ce81c4f2affda469164709f862bb36ff023c163;hb=d6c0a11d1cecfac18b323285e7ffadb7f58e848f;hp=0048dc6053d0bab06130eeaa6ab5d10b576aeb48;hpb=731d19a6eaf81768ed35e4be25fbac5686a2a7a0;p=mothur.git diff --git a/clusterclassic.cpp b/clusterclassic.cpp index 0048dc6..1ce81c4 100644 --- a/clusterclassic.cpp +++ b/clusterclassic.cpp @@ -434,11 +434,11 @@ void ClusterClassic::print() { try { //update location of seqs in smallRow since they move to smallCol now for (int i = 0; i < dMatrix.size(); i++) { - cout << "row = " << i << '\t'; + m->mothurOut("row = " + toString(i) + "\t"); for (int j = 0; j < dMatrix[i].size(); j++) { - cout << dMatrix[i][j] << '\t'; + m->mothurOut(toString(dMatrix[i][j]) + "\t"); } - cout << endl; + m->mothurOutEndLine(); } } catch(exception& e) {