-
Notifications
You must be signed in to change notification settings - Fork 418
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
paftools.js call with k8 v1 can't handle references > 1.5 Gb #1166
Comments
Could you provide a test case? Thanks. |
To double check, I downloaded a fresh copy of k8, minimap2, and the cattle reference. If I run
I can still get the OOM heap limit error. If I reduce the reference to
I get the expected VCF output (which is the header and 0s for all the stats). |
Thanks for the example. It should have been fixed now. paftools.js is still not fully compatible with k8 v1.0. A few seldom used subcommands are not working. I will fix when I need them or users raise issues. Actually, you can make the unfixed paftools.js work with k8 --max-old-space-size=10000 paftools.js call -f hs38.fa empty.paf Nonetheless, the fix is still preferred and may be a little faster. Note that k8 inherits all v8 command-line options and |
When using
paftools call -f <reference>
with k8-1.0 I now get OOM errors likeTrying to adjust the heap size with
export NODE_OPTIONS="--max-old-space-size=10000"
etc did not help. I checked this with both commits 9506e7a and bc588c0. I tested the exact same call and files with k8-0.2.5 and it works fine.I was playing around in the code and it seems to be an issue of the size of the sequence dictionary
h
. I can get this to run (up to an expected error about missing contigs) by only selecting the first 12 contigs (totalling 1431554824 bp), but then crashed on trying with 13 contigs (totalling 1518796476 bp). It also works removing the first 15 or so contigs (totalling 1470948544 bp), so it is definitely related to the size of the values rather than the size of the keys.Changing this line to some random short string rather than the sequence line allows the fasta to be read and then crashes later because the sequence lengths obviously don't match the variant positions.
minimap2/misc/paftools.js
Line 174 in f3e59fc
Changing the fasta line lengths (
seqtk seq -l 60
) also doesn't help.I have no idea why it appears the dict can't handle >1.5 Gb of strings in k8 v1 but can in k8 v0.2.5, but that appears to be the case.
Best,
Alex
The text was updated successfully, but these errors were encountered: