-
Notifications
You must be signed in to change notification settings - Fork 597
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
NPE When using GenomicsDB and GenotypeGVCFs with --max-alternates #7687
Comments
@ldgauthier Thoughts on this error? Is it related to the patch in #7670? |
@droazen Is there a nightly or similar build I could take advantage of to get a JAR with this fix? I can built that branch locally if needed, but something automatic would save a little effort. Any thoughts on how soon you'd consider making a minor release? |
@bbimber Once that PR is merged, it will automatically go out as part of the next GATK nightly docker snapshot (https://hub.docker.com/r/broadinstitute/gatk-nightly). We are going to do a point release shortly after that PR goes in. |
ok, fantastic |
@bbimber that PR just went in and I still think it should solve your issue. I introduced a bug in 4.2.5.0 in a conditional statement that let highly multi-allelic variants with no PLs get further than they should. I think that site had more than the GDB max alt count, so it didn’t get PLs, but with the bug I said that was okay if it was called. So it should get dropped with no PLs, but instead it snuck through and is throwing an NPE when ExcessHet goes to get the genotype counts. After the fix, the site will get dropped, which is consistent with the previous GenotypeGVCFs behavior. |
@ldgauthier Much appreciated. We're currently trying to figure out GenomicsDB memory issues (#7674), but this was going to be a blocking issue too. Any idea when you'll make a point release? |
@bbimber Release is currently slated for tomorrow morning |
@droazen Have you given further thought to when you might make this release? Thanks. |
Sorry for the delay @bbimber -- the release is currently being held up by an issue with the Google Cloud requester pays support that is affecting large numbers of GATK users (#7716). There is an open PR to fix this (#7730), but tests are not yet passing. While you wait for the release to come out, you could use the latest nightly docker image (https://hub.docker.com/r/broadinstitute/gatk-nightly/) or build GATK from source to confirm that your NPE is indeed fixed as we believe it to be. |
Hello,
I'm running GATK 4.2.5.0 with a command line this. Note --max-alternate-alleles and --genomicsdb-max-alternate-alleles.
I'm getting this NPE after it runs for about 40 minutes, meaning many sites were processed fine:
which maps to:
gatk/src/main/java/org/broadinstitute/hellbender/utils/GenotypeUtils.java
Line 85 in da7cd83
Have you see issues like this before?
The text was updated successfully, but these errors were encountered: