Package picard.analysis
Class AlignmentSummaryMetricsCollector.GroupAlignmentSummaryMetricsPerUnitMetricCollector
- java.lang.Object
-
- picard.analysis.AlignmentSummaryMetricsCollector.GroupAlignmentSummaryMetricsPerUnitMetricCollector
-
- All Implemented Interfaces:
PerUnitMetricCollector<AlignmentSummaryMetrics,Integer,SAMRecordAndReference>
- Enclosing class:
- AlignmentSummaryMetricsCollector
public class AlignmentSummaryMetricsCollector.GroupAlignmentSummaryMetricsPerUnitMetricCollector extends Object implements PerUnitMetricCollector<AlignmentSummaryMetrics,Integer,SAMRecordAndReference>
-
-
Constructor Summary
Constructors Constructor Description GroupAlignmentSummaryMetricsPerUnitMetricCollector(String sample, String library, String readGroup)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
acceptRecord(SAMRecordAndReference args)
Add a SAMRecord (with ReferenceSequence and Read Group info) to the metric(s) being calculated)void
addMetricsToFile(htsjdk.samtools.metrics.MetricsFile<AlignmentSummaryMetrics,Integer> file)
Any metrics collected will be added to the metric file provided.void
finish()
When all records have been collected, compute any final values needed to finish constructing metrics/Histogram
-
-
-
Method Detail
-
acceptRecord
public void acceptRecord(SAMRecordAndReference args)
Description copied from interface:PerUnitMetricCollector
Add a SAMRecord (with ReferenceSequence and Read Group info) to the metric(s) being calculated)- Specified by:
acceptRecord
in interfacePerUnitMetricCollector<AlignmentSummaryMetrics,Integer,SAMRecordAndReference>
- Parameters:
args
- Contains SAMRecord, SAMReadGroupRecord, ReferenceSequence of current record and any previously computed values that might be needed for this class
-
finish
public void finish()
Description copied from interface:PerUnitMetricCollector
When all records have been collected, compute any final values needed to finish constructing metrics/Histogram- Specified by:
finish
in interfacePerUnitMetricCollector<AlignmentSummaryMetrics,Integer,SAMRecordAndReference>
-
addMetricsToFile
public void addMetricsToFile(htsjdk.samtools.metrics.MetricsFile<AlignmentSummaryMetrics,Integer> file)
Description copied from interface:PerUnitMetricCollector
Any metrics collected will be added to the metric file provided.- Specified by:
addMetricsToFile
in interfacePerUnitMetricCollector<AlignmentSummaryMetrics,Integer,SAMRecordAndReference>
- Parameters:
file
- MetricsFile to which all metrics created by this collector should be added
-
-