From: Sarah Westcott Date: Tue, 28 May 2013 17:11:45 +0000 (-0400) Subject: case sensitive include statement caused issues for Unix systems. X-Git-Url: https://git.donarmstrong.com/?p=mothur.git;a=commitdiff_plain;h=f204e1111a6d4da30db9bccfa65f75546f59ba11 case sensitive include statement caused issues for Unix systems. --- 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& 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;