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
7b2a5605
Commit
7b2a5605
authored
Nov 06, 2014
by
Neil Kindlon
Browse files
Including files for minor fixes omitted in yesterday's check-in
parent
267cb42b
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/utils/Contexts/ContextClosest.cpp
View file @
7b2a5605
...
...
@@ -20,6 +20,8 @@ ContextClosest::ContextClosest()
_strandedDistMode
(
REF_DIST
),
_multiDbMode
(
EACH_DB
)
{
// closest requires sorted input
setSortedInput
(
true
);
}
...
...
src/utils/FileRecordTools/Records/Record.cpp
View file @
7b2a5605
...
...
@@ -122,7 +122,7 @@ bool Record::chromAfter(const Record *other) const
bool
Record
::
after
(
const
Record
*
other
)
const
{
return
(
_chrId
==
other
->
_chrId
&&
_startPos
>=
other
->
_endPos
);
return
(
sameChrom
(
other
)
&&
_startPos
>=
other
->
_endPos
);
}
bool
Record
::
intersects
(
const
Record
*
record
,
...
...
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