Skip to content
Snippets Groups Projects
Commit b6162043 authored by Aaron's avatar Aaron
Browse files

Added Open() idiom to BedSubtract::SubtractBed().

parent 00a2f3f6
No related branches found
No related tags found
No related merge requests found
......@@ -160,7 +160,8 @@ void BedSubtract::SubtractBed() {
vector<BED> hits; // vector of potential hits
// reserve some space
hits.reserve(100);
_bedA->Open();
bedStatus = _bedA->GetNextBed(a, lineNum);
while (bedStatus != BED_INVALID) {
if (bedStatus == BED_VALID) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment