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
# on branch develop, latest commit 8e43fb0650
curl -r 0-12000 -LO https://ftp.ncbi.nlm.nih.gov/snp/latest_release/VCF/GCF_000001405.25.gz
# or wget -c --header="Range: bytes=0-12000" https://ftp.ncbi.nlm.nih.gov/snp/latest_release/VCF/GCF_000001405.25.gz
htslib-develop/tabix GCF_000001405.25.gz ;echo$?
[E::bgzf_read_block] Failed to read BGZF block data at offset 9832 expected 8913 bytes; hread returned 2151
[W::bgzf_read_block] EOF marker is absent. The input may be truncated
0
ls -ltr
-rw-r--r--. 1 root root 12001 Nov 23 19:49 GCF_000001405.25.gz
-rw-r--r--. 1 root root 113 Nov 23 19:49 GCF_000001405.25.gz.tbi
# also, same result on htslib-1.9
../htslib-1.9/tabix GCF_000001405.25.gz ;echo$?
[W::bgzf_read_block] EOF marker is absent. The input is probably truncated
0
The text was updated successfully, but these errors were encountered:
Yes, that shouldn't be happening. The error, as you've noticed, is in bgzf_getline() which isn't returning the error result correctly if it's already got some data.
How to reproduce:
The text was updated successfully, but these errors were encountered: