diff --git a/public/java/src/org/broadinstitute/sting/gatk/walkers/coverage/DepthOfCoverageWalker.java b/public/java/src/org/broadinstitute/sting/gatk/walkers/coverage/DepthOfCoverageWalker.java index 3a18fe610..86f97a36c 100644 --- a/public/java/src/org/broadinstitute/sting/gatk/walkers/coverage/DepthOfCoverageWalker.java +++ b/public/java/src/org/broadinstitute/sting/gatk/walkers/coverage/DepthOfCoverageWalker.java @@ -69,14 +69,23 @@ import java.util.*; *
* Tables pertaining to different coverage summaries. Suffix on the table files declares the contents: + *
* - no suffix: per locus coverage + *
* - _summary: total, mean, median, quartiles, and threshold proportions, aggregated over all bases + *
* - _statistics: coverage histograms (# locus with X coverage), aggregated over all bases + *
* - _interval_summary: total, mean, median, quartiles, and threshold proportions, aggregated per interval + *
* - _interval_statistics: 2x2 table of # of intervals covered to >= X depth in >=Y samples + *
* - _gene_summary: total, mean, median, quartiles, and threshold proportions, aggregated per gene + *
* - _gene_statistics: 2x2 table of # of genes covered to >= X depth in >= Y samples + *
* - _cumulative_coverage_counts: coverage histograms (# locus with >= X coverage), aggregated over all bases + *
* - _cumulative_coverage_proportions: proprotions of loci with >= X coverage, aggregated over all bases *
*