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
Yes, I messed up the commit message and wrote that it "resolves issue 5433" instead of "resolves issue #5433". Without the hash I guess github assumes it's stupid meatbag language and ignores it. The bug should be fixed so I'm closing the issue manually. Sorry to leave this hanging the last month, and thanks for pointing it out.
This issue affect version of GATK4 from version 4.0.10.1 and onwards, and is related to github feature/pull request #4969: "Improve MQ calculation accuracy".
GVCFs with large
RAW_MQ
sum of sumSquaredMQs values end up with an error like:The error happens when the sumSquaredMQs element value is greater than Java's.
Integer.MAX_VALUE
. See the following github pull request comment for more details.Should a
java.lang.Long
,java.math.BigInteger
,java.lang.Double
, orjava.math.BigDecimal
be used here instead of ajava.lang.Integer
for method:parseRawDataString
insideorg.broadinstitute.hellbender.tools.walkers.annotator.RMSMappingQuality
?I've noticed this error when using GATK4 version 4.0.11.0 on the GATK4 Germline SNPs-INDELs WDL workflow. It happens on the
JointGenotyping.GenotypeGVCFs
task.The text was updated successfully, but these errors were encountered: