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
-
Field Summary
Fields inherited from class org.broadinstitute.hellbender.utils.tsv.TableWriter
METADATA_TAG
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionprotected void
composeLine
(PileupSummary record, DataLine dataLine) Composes the data-line to write into the output to represent a given recordMethods inherited from class org.broadinstitute.hellbender.utils.tsv.TableWriter
close, flush, writeAllRecords, writeComment, writeHeaderIfApplies, writeMetadata, writeRecord
-
Constructor Details
-
PileupSummaryTableWriter
- Throws:
IOException
-
-
Method Details
-
composeLine
Description copied from class:TableWriter
Composes the data-line to write into the output to represent a given recordAlso 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
anddataLine
are guaranteed not to benull
s.- Specified by:
composeLine
in classTableWriter<PileupSummary>
- Parameters:
record
- the record to write into the data-line.dataLine
- the destination data-line object.
-