Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Gitlab will go into maintenance Friday 3rd February from 9:00 to 10:00
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)
return
;
}
binNumType
startBin
=
0
;
binNumType
endBin
=
0
;
binNumType
startPos
=
record
->
getStartPos
();
binNumType
endPos
=
record
->
getEndPos
();
startBin
=
(
startPos
>>
_binFirstShift
);
endBin
=
((
endPos
-
1
)
>>
_binFirstShift
);
binNumType
startBin
=
(
startPos
>>
_binFirstShift
);
binNumType
endBin
=
((
endPos
-
1
)
>>
_binFirstShift
);
const
allBinsType
bins
=
mainIter
->
second
;
const
allBinsType
&
bins
=
mainIter
->
second
;
/* SYNOPSIS:
1. We loop through each UCSC BIN level for feature A's chrom.
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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