You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am running into a segfault when I attempt to write a header into an uncompressed BAM. I'm opening the file using hts_open(fname, "wbu"). I tried with the commit 6143086502567c5c4bb5cacb2951f664ba28ed6e (release 1.17) but still see that issue.
The same code runs if I just change the mode to "wb".
Could that be looked into?
Thanks!
The text was updated successfully, but these errors were encountered:
Avoids segfault when writing bam/bcf with mode "wbu" by
changing "wbu" to "wb0". The ensures the output file will
be properly wrapped in BGZF blocks, even though it's not
been compressed.
Fixessamtools#1617
Hi,
I am running into a segfault when I attempt to write a header into an uncompressed BAM. I'm opening the file using
hts_open(fname, "wbu")
. I tried with the commit6143086502567c5c4bb5cacb2951f664ba28ed6e
(release 1.17) but still see that issue.The same code runs if I just change the mode to "wb".
Could that be looked into?
Thanks!
The text was updated successfully, but these errors were encountered: