We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Mutect2
It looks like there may be a typo in Mutect2Engine.java that was introduced before the most recent release, https://github.com/broadinstitute/gatk/blob/master/src/main/java/org/broadinstitute/hellbender/tools/walkers/mutect/Mutect2Engine.java#L392
The line currently reads:
if (bestNormalAltAllele.getLeft() == bestNormalAltAllele.getLeft()) {
It seems like this line should instead be:
if (bestNormalAltAllele.getLeft() == bestTumorAltAllele.getLeft()) {
The text was updated successfully, but these errors were encountered:
Thanks!
Sorry, something went wrong.
davidbenjamin
fleharty
Successfully merging a pull request may close this issue.
Bug Report
Affected tool
Mutect2
Affected version(s)
Description
It looks like there may be a typo in Mutect2Engine.java that was introduced before the most recent release, https://github.com/broadinstitute/gatk/blob/master/src/main/java/org/broadinstitute/hellbender/tools/walkers/mutect/Mutect2Engine.java#L392
The line currently reads:
It seems like this line should instead be:
The text was updated successfully, but these errors were encountered: