diff --git a/src/utils/bedFile/bedFile.cpp b/src/utils/bedFile/bedFile.cpp index e9625d60a3ba82738b111e688d5c3d5fa7dbedfe..ec303579095b8f86bc71a709f79570a679683900 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 bf5a46116ec19e9561e3869f3587ea6cb0ee495f..e8c56b4e2642bc9d00b72410356cb0cb8f653c62 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.