Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
R3
legacy
bedtools2
Commits
59116f2d
Commit
59116f2d
authored
Feb 16, 2015
by
Neil Kindlon
Browse files
Fixed context error that broke merge
parent
4a9a6c2b
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/utils/Contexts/ContextBase.cpp
View file @
59116f2d
...
...
@@ -219,8 +219,16 @@ bool ContextBase::isValidState()
}
if
(
hasColumnOpsMethods
())
{
for
(
int
i
=
0
;
i
<
(
int
)
_dbFileIdxs
.
size
();
i
++
)
{
FileRecordMgr
*
dbFile
=
getFile
(
_dbFileIdxs
[
i
]);
if
(
hasIntersectMethods
())
{
for
(
int
i
=
0
;
i
<
(
int
)
_dbFileIdxs
.
size
();
i
++
)
{
FileRecordMgr
*
dbFile
=
getFile
(
_dbFileIdxs
[
i
]);
_keyListOps
->
setDBfileType
(
dbFile
->
getFileType
());
if
(
!
_keyListOps
->
isValidColumnOps
(
dbFile
))
{
return
false
;
}
}
}
else
{
FileRecordMgr
*
dbFile
=
getFile
(
0
);
_keyListOps
->
setDBfileType
(
dbFile
->
getFileType
());
if
(
!
_keyListOps
->
isValidColumnOps
(
dbFile
))
{
return
false
;
...
...
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