From f204e1111a6d4da30db9bccfa65f75546f59ba11 Mon Sep 17 00:00:00 2001
From: Sarah Westcott <mothur.westcott@gmail.com>
Date: Tue, 28 May 2013 13:11:45 -0400
Subject: [PATCH] case sensitive include statement caused issues for Unix
 systems.

---
 calcsparcc.cpp        | 2 +-
 screenseqscommand.cpp | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/calcsparcc.cpp b/calcsparcc.cpp
index 9d1d88a..7fc6192 100644
--- a/calcsparcc.cpp
+++ b/calcsparcc.cpp
@@ -6,7 +6,7 @@
 //  Copyright (c) 2012 University of Michigan. All rights reserved.
 //
 
-#include "calcSparcc.h"
+#include "calcsparcc.h"
 #include "linearalgebra.h"
 
 /**************************************************************************************************/
diff --git a/screenseqscommand.cpp b/screenseqscommand.cpp
index 051aa99..1d7cb8d 100644
--- a/screenseqscommand.cpp
+++ b/screenseqscommand.cpp
@@ -817,7 +817,7 @@ int ScreenSeqsCommand::screenAlignReport(map<string, string>& badSeqNames){
             m->mothurRemove(outSummary+".temp");
         }
         
-        if (numFastaSeqs != count) {  m->mothurOut("[ERROR]: found " + toString(numFastaSeqs) + " sequences in your fasta file, and " + toString(count) + " sequences in your contigs report file, quitting.\n"); m->control_pressed = true; }
+        if (numFastaSeqs != count) {  m->mothurOut("[ERROR]: found " + toString(numFastaSeqs) + " sequences in your fasta file, and " + toString(count) + " sequences in your align report file, quitting.\n"); m->control_pressed = true; }
         
         
         return count;
-- 
2.39.5