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
gatk_cnv step 3 has the potential of attempting to interpret log2 of 0. This is a rare edge case where the count for the interval is 0 and is not filtered out in any of the previous steps.
One solution to this is setting the --minimum-interval-median-percentile to be really small, since this can use scientific notation a value such as 1E-30 would work and avoid 0's being passed into a log2 calculation.
The text was updated successfully, but these errors were encountered:
gatk_cnv step 3 has the potential of attempting to interpret log2 of 0. This is a rare edge case where the count for the interval is 0 and is not filtered out in any of the previous steps.
phoenix/modules/somatic/gatk_cnv.jst
Lines 424 to 440 in 9f04da2
One solution to this is setting the
--minimum-interval-median-percentile
to be really small, since this can use scientific notation a value such as1E-30
would work and avoid 0's being passed into a log2 calculation.The text was updated successfully, but these errors were encountered: