From 21d9db9344bc51043d3e229456827b6e90f27013 Mon Sep 17 00:00:00 2001
From: Don Armstrong <don@donarmstrong.com>
Date: Thu, 8 May 2014 08:42:38 -0700
Subject: [PATCH] have make contigs use \r instead of \n

---
 makecontigscommand.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/makecontigscommand.cpp b/makecontigscommand.cpp
index e633a9c..d2ddc06 100644
--- a/makecontigscommand.cpp
+++ b/makecontigscommand.cpp
@@ -1448,7 +1448,7 @@ vector< vector<string> > MakeContigsCommand::readFastaFiles(unsigned long int& c
             }
 		}
 		//report progress
-		if((count) % 10000 != 0){	m->mothurOut(toString(count)); m->mothurOutEndLine();		}
+		if((count) % 10000 != 0){	m->mothurOut(toString(count)); m->mothurOut("\r");		}
         
         if (uniques.size() != 0) {
             for (itUniques = uniques.begin(); itUniques != uniques.end(); itUniques++) {
-- 
2.39.5