Skip to content

Commit

Permalink
Fix documentation for AT_DROPOUT and GC_DROPOUT in PanelMetricsBase.java
Browse files Browse the repository at this point in the history
  • Loading branch information
kockan committed Aug 19, 2024
1 parent 142282a commit 442e2fb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main/java/picard/analysis/directed/PanelMetricsBase.java
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ public class PanelMetricsBase extends MultilevelMetrics {
/** The number of PF aligned bases that mapped to a targeted region of the genome. */
public long ON_TARGET_BASES;

//metrics below here are derived after collection
// Metrics below here are derived after collection

/** The fraction of reads passing filter, PF_READS/TOTAL_READS. */
public double PCT_PF_READS;
Expand Down 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 abs(sum(a-b when a-b < 0)). E.g. if the value is 5% this implies that 5% of total
* 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
* 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 abs(sum(a-b when a-b < 0)). E.g. if the value is 5% this implies that 5% of total
* 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
* reads that should have mapped to GC>=50% regions mapped elsewhere.
*/
public double GC_DROPOUT;
Expand Down

0 comments on commit 442e2fb

Please sign in to comment.