Skip to content

Commit

Permalink
Reword the comment
Browse files Browse the repository at this point in the history
  • Loading branch information
kockan committed Aug 22, 2024
1 parent 442e2fb commit 295ee98
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/picard/analysis/directed/PanelMetricsBase.java
Original file line number Diff line number Diff line change
Expand Up @@ -151,15 +151,15 @@ public class PanelMetricsBase extends MultilevelMetrics {
/**
* A measure of how undercovered <= 50% GC regions are relative to the mean. For each GC bin [0..50]
* we calculate a = % of target territory, and b = % of aligned reads aligned to these targets.
* AT_DROPOUT is then sum(abs(b-a)) when b-a < 0. E.g. if the value is 5%, this implies that 5% of total
* AT_DROPOUT is then sum(a-b if a-b > 0 else 0). E.g. if the value is 5%, this implies that 5% of total
* reads that should have mapped to GC<=50% regions mapped elsewhere.
*/
public double AT_DROPOUT;

/**
* A measure of how undercovered >= 50% GC regions are relative to the mean. For each GC bin [50..100]
* we calculate a = % of target territory, and b = % of aligned reads aligned to these targets.
* GC_DROPOUT is then sum(abs(b-a)) when b-a < 0. E.g. if the value is 5% this implies that 5% of total
* GC_DROPOUT is then sum(a-b if a-b > 0 else 0). E.g. if the value is 5% this implies that 5% of total
* reads that should have mapped to GC>=50% regions mapped elsewhere.
*/
public double GC_DROPOUT;
Expand Down

0 comments on commit 295ee98

Please sign in to comment.