Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
R3
legacy
bedtools2
Commits
8edf2662
Commit
8edf2662
authored
May 27, 2015
by
Neil Kindlon
Browse files
Removed accidental copy in BinTree to fix speed
parent
3010bf53
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/utils/BinTree/BinTree.cpp
View file @
8edf2662
...
@@ -57,17 +57,14 @@ void BinTree::getHits(Record *record, RecordKeyVector &hitSet)
...
@@ -57,17 +57,14 @@ void BinTree::getHits(Record *record, RecordKeyVector &hitSet)
return
;
return
;
}
}
binNumType
startBin
=
0
;
binNumType
endBin
=
0
;
binNumType
startPos
=
record
->
getStartPos
();
binNumType
startPos
=
record
->
getStartPos
();
binNumType
endPos
=
record
->
getEndPos
();
binNumType
endPos
=
record
->
getEndPos
();
startBin
=
(
startPos
>>
_binFirstShift
);
binNumType
startBin
=
(
startPos
>>
_binFirstShift
);
endBin
=
((
endPos
-
1
)
>>
_binFirstShift
);
binNumType
endBin
=
((
endPos
-
1
)
>>
_binFirstShift
);
const
allBinsType
bins
=
mainIter
->
second
;
const
allBinsType
&
bins
=
mainIter
->
second
;
/* SYNOPSIS:
/* SYNOPSIS:
1. We loop through each UCSC BIN level for feature A's chrom.
1. We loop through each UCSC BIN level for feature A's chrom.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment