From f81132dce94b2e1d5b1ccacabf63a78c023db559 Mon Sep 17 00:00:00 2001 From: Aaron <aaronquinlan@gmail.com> Date: Mon, 4 Oct 2010 11:56:11 -0400 Subject: [PATCH] Removed careless debugging message from annotateBed. --- src/utils/bedFile/bedFile.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/utils/bedFile/bedFile.cpp b/src/utils/bedFile/bedFile.cpp index 124cd0c2..8b11f46b 100644 --- a/src/utils/bedFile/bedFile.cpp +++ b/src/utils/bedFile/bedFile.cpp @@ -447,8 +447,6 @@ void BedFile::countListHits(const BED &a, int index, bool forceStrand) { vector<BEDCOVLIST>::iterator bedEnd = bedCovListMap[a.chrom][j].end(); for (; bedItr != bedEnd; ++bedItr) { - // skip the hit if not on the same strand (and we care) - cout << a.strand << "\t" << bedItr->strand << "\t" << forceStrand << endl; if (forceStrand && (a.strand != bedItr->strand)) { continue; } -- GitLab