Skip to content

Commit

Permalink
Add DocumentedFeature.
Browse files Browse the repository at this point in the history
  • Loading branch information
cmnbroad committed Apr 4, 2022
1 parent 3a041ab commit 7e32904
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
package org.broadinstitute.hellbender.metrics;

import htsjdk.samtools.SamPairUtil.PairOrientation;
import org.broadinstitute.hellbender.metrics.MultiLevelMetrics;
import org.broadinstitute.barclay.help.DocumentedFeature;
import picard.util.help.HelpConstants;

import java.io.Serializable;

Expand All @@ -11,6 +12,7 @@
* ".insertSizeMetrics". In addition the insert size distribution is plotted to
* a file with the extension ".insertSizeMetrics.pdf".
*/
@DocumentedFeature(groupName = HelpConstants.DOC_CAT_METRICS, summary = HelpConstants.DOC_CAT_METRICS_SUMMARY)
public final class InsertSizeMetrics extends MultiLevelMetrics implements Serializable {

private static final long serialVersionUID = 1L;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,13 +1,16 @@
package org.broadinstitute.hellbender.metrics;

import htsjdk.samtools.metrics.MetricBase;
import org.broadinstitute.barclay.help.DocumentedFeature;
import org.broadinstitute.hellbender.utils.Utils;
import org.broadinstitute.hellbender.utils.read.GATKRead;
import org.broadinstitute.hellbender.utils.read.ReadUtils;
import picard.util.help.HelpConstants;

import java.io.Serializable;

/** A set of metrics used to describe the general quality of a BAM file */
@DocumentedFeature(groupName = HelpConstants.DOC_CAT_METRICS, summary = HelpConstants.DOC_CAT_METRICS_SUMMARY)
public final class QualityYieldMetrics extends MetricBase implements Serializable {
private static final long serialVersionUID = 1;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
package org.broadinstitute.hellbender.metrics.analysis;

import htsjdk.samtools.metrics.MetricBase;
import org.broadinstitute.barclay.help.DocumentedFeature;
import picard.util.help.HelpConstants;

@DocumentedFeature(groupName = HelpConstants.DOC_CAT_METRICS, summary = HelpConstants.DOC_CAT_METRICS_SUMMARY)
public class AlleleFrequencyQCMetric extends MetricBase {

public String SAMPLE;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
package org.broadinstitute.hellbender.metrics.analysis;

import htsjdk.samtools.metrics.MetricBase;
import org.broadinstitute.barclay.help.DocumentedFeature;
import picard.util.help.HelpConstants;

@DocumentedFeature(groupName = HelpConstants.DOC_CAT_METRICS, summary = HelpConstants.DOC_CAT_METRICS_SUMMARY)
public final class BaseDistributionByCycleMetrics extends MetricBase {
public int READ_END;
public int CYCLE;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
package org.broadinstitute.hellbender.tools.spark.pathseq.loggers;

import htsjdk.samtools.metrics.MetricBase;
import org.broadinstitute.barclay.help.DocumentedFeature;
import picard.util.help.HelpConstants;

/**
* Metrics that are calculated during the PathSeq filter
*/
@DocumentedFeature(groupName = HelpConstants.DOC_CAT_METRICS, summary = HelpConstants.DOC_CAT_METRICS_SUMMARY)
public final class PSFilterMetrics extends MetricBase {

/**
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,14 @@
package org.broadinstitute.hellbender.tools.spark.pathseq.loggers;

import htsjdk.samtools.metrics.MetricBase;
import org.broadinstitute.barclay.help.DocumentedFeature;
import picard.util.help.HelpConstants;

/**
* Metrics that are calculated during the PathSeq scoring
*/
@SuppressWarnings("serial")
@DocumentedFeature(groupName = HelpConstants.DOC_CAT_METRICS, summary = HelpConstants.DOC_CAT_METRICS_SUMMARY)
public final class PSScoreMetrics extends MetricBase {

/**
Expand Down

0 comments on commit 7e32904

Please sign in to comment.