Class PileupSummary.PileupSummaryTableWriter

java.lang.Object
org.broadinstitute.hellbender.utils.tsv.TableWriter<PileupSummary>
org.broadinstitute.hellbender.tools.walkers.contamination.PileupSummary.PileupSummaryTableWriter
All Implemented Interfaces:
Closeable, AutoCloseable
Enclosing class:
PileupSummary

public static class PileupSummary.PileupSummaryTableWriter extends TableWriter<PileupSummary>
  • Constructor Details

  • Method Details

    • composeLine

      protected void composeLine(PileupSummary record, DataLine dataLine)
      Description copied from class: TableWriter
      Composes the data-line to write into the output to represent a given record

      Also the first element cannot contain the comment prefix. If that is a genuine valid value for the first column you shall consider to re-order the columns or change the encoding of the first column to avoid this issue.

      Both inputs, record and dataLine are guaranteed not to be nulls.

      Specified by:
      composeLine in class TableWriter<PileupSummary>
      Parameters:
      record - the record to write into the data-line.
      dataLine - the destination data-line object.