Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix issue #832 #847

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -187,5 +187,5 @@ CHRPOS SingleLineDelimTextFileReader::getVcfSVlen() {
}
}
// not found
return INT_MIN;
return 1;
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

As long as other place in bedtools doesn't handles negative length (which means returning INT_MIN would only causing interger overflow which cause unpredictable bugs rather than anything we expected), I believe return INT_MIN doesn't make sense anyway. Alternatively, we can turn this into an error, but I am not sure if this is actually valid VCF

}
4 changes: 3 additions & 1 deletion src/utils/FileRecordTools/Records/VcfRecord.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,9 @@ bool VcfRecord::initFromFile(SingleLineDelimTextFileReader *fileReader)
if (_varAlt[0] == '<') {
// this is a structural variant. Need to parse the tags to find the endpos,
// UNLESS it's an insertion.
if (!(_varAlt[1] == 'I' && _varAlt[2] == 'N' && _varAlt[3] == 'S')) {
if (memcmp(_varAlt.c_str(), "<*>", 3) == 0) {
_endPos = _startPos + 1;
} else if (memcmp(_varAlt.c_str(), "<INS>", 5) != 0) {
_endPos = _startPos + fileReader->getVcfSVlen();
} else {
//for insertions, treat as zero-length records
Expand Down