From 65b0c56bcb1fb0392fa0a25e31301efea98cf6a0 Mon Sep 17 00:00:00 2001 From: Aaron <aaronquinlan@gmail.com> Date: Tue, 8 Nov 2011 20:12:46 -0500 Subject: [PATCH] minor --- src/utils/bedFile/bedFile.cpp | 1 - src/utils/bedFile/bedFile.h | 6 +++--- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/src/utils/bedFile/bedFile.cpp b/src/utils/bedFile/bedFile.cpp index e9625d60..ec303579 100644 --- a/src/utils/bedFile/bedFile.cpp +++ b/src/utils/bedFile/bedFile.cpp @@ -168,7 +168,6 @@ bool BedFile::Empty() { return _bedStream->eof(); } - // Close the BED file void BedFile::Close(void) { if (bedFile != "stdin" && bedFile != "-") delete _bedStream; diff --git a/src/utils/bedFile/bedFile.h b/src/utils/bedFile/bedFile.h index bf5a4611..e8c56b4e 100644 --- a/src/utils/bedFile/bedFile.h +++ b/src/utils/bedFile/bedFile.h @@ -46,7 +46,6 @@ typedef uint32_t UINT; //************************************************* // Genome binning constants //************************************************* - const BIN _numBins = 37450; const BINLEVEL _binLevels = 7; @@ -407,13 +406,14 @@ public: // Open a BED file for reading (creates an istream pointer) void Open(void); - + // Rewind the pointer back to the beginning of the file void Rewind(void); // Jump to a specific byte in the file void Seek(unsigned long offset); - + + bool Empty(); // Close an opened BED file. -- GitLab