diff --git a/src/windowBed/windowBed.cpp b/src/windowBed/windowBed.cpp index e993a81de18390dc619a1dbbb449a79ba067ed6d..dfd5622658659a3d7c5bd10bee7face9003041ce 100644 --- a/src/windowBed/windowBed.cpp +++ b/src/windowBed/windowBed.cpp @@ -16,8 +16,9 @@ /* Constructor */ -BedWindow::BedWindow(string bedAFile, string bedBFile, int leftSlop, int rightSlop, bool anyHit, bool noHit, - bool writeCount, bool strandWindows, bool matchOnStrand, bool bamInput, bool bamOutput) { +BedWindow::BedWindow(string bedAFile, string bedBFile, int leftSlop, int rightSlop, + bool anyHit, bool noHit, bool writeCount, bool strandWindows, + bool matchOnStrand, bool bamInput, bool bamOutput, bool isUncompressedBam) { _bedAFile = bedAFile; _bedBFile = bedBFile; @@ -25,14 +26,15 @@ BedWindow::BedWindow(string bedAFile, string bedBFile, int leftSlop, int rightSl _leftSlop = leftSlop; _rightSlop = rightSlop; - _anyHit = anyHit; - _noHit = noHit; - _writeCount = writeCount; - _strandWindows = strandWindows; - _matchOnStrand = matchOnStrand; - _bamInput = bamInput; - _bamOutput = bamOutput; - + _anyHit = anyHit; + _noHit = noHit; + _writeCount = writeCount; + _strandWindows = strandWindows; + _matchOnStrand = matchOnStrand; + _bamInput = bamInput; + _bamOutput = bamOutput; + _isUncompressedBam = isUncompressedBam; + _bedA = new BedFile(bedAFile); _bedB = new BedFile(bedBFile); @@ -169,7 +171,7 @@ void BedWindow::WindowIntersectBam(string bamFile) { // open a BAM output to stdout if we are writing BAM if (_bamOutput == true) { // open our BAM writer - writer.Open("stdout", header, refs); + writer.Open("stdout", header, refs, _isUncompressedBam); } vector<BED> hits; // vector of potential hits diff --git a/src/windowBed/windowBed.h b/src/windowBed/windowBed.h index b1af91110a57df61b730f24ccaa0b023a9ae03b5..5da5cb02fe762721313802e8fe4765c34a860d37 100644 --- a/src/windowBed/windowBed.h +++ b/src/windowBed/windowBed.h @@ -32,8 +32,9 @@ class BedWindow { public: // constructor - BedWindow(string bedAFile, string bedBFile, int leftSlop, int rightSlop, bool anyHit, bool noHit, - bool writeCount, bool strandWindows, bool matchOnStrand, bool bamInput, bool bamOutput); + BedWindow(string bedAFile, string bedBFile, int leftSlop, int rightSlop, + bool anyHit, bool noHit, bool writeCount, bool strandWindows, + bool matchOnStrand, bool bamInput, bool bamOutput, bool isUncompressedBam); // destructor ~BedWindow(void); @@ -51,6 +52,7 @@ private: bool _matchOnStrand; bool _bamInput; bool _bamOutput; + bool _isUncompressedBam; // instance of a bed file class. BedFile *_bedA, *_bedB;