Package picard.illumina
Interface BasecallsConverter.ConvertedClusterDataWriter<OUTPUT_RECORD>
-
- Type Parameters:
OUTPUT_RECORD
- The recode type to convert to.
- All Superinterfaces:
AutoCloseable
,Closeable
,htsjdk.io.Writer<OUTPUT_RECORD>
- Enclosing class:
- BasecallsConverter<CLUSTER_OUTPUT_RECORD>
protected static interface BasecallsConverter.ConvertedClusterDataWriter<OUTPUT_RECORD> extends htsjdk.io.Writer<OUTPUT_RECORD>
Interface that defines a writer that will write out OUTPUT_RECORD type objects.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
close()
Closes the writer.void
write(OUTPUT_RECORD rec)
Write out a single record of type OUTPUT_RECORD.
-
-
-
Method Detail
-
write
void write(OUTPUT_RECORD rec)
Write out a single record of type OUTPUT_RECORD.- Specified by:
write
in interfacehtsjdk.io.Writer<OUTPUT_RECORD>
- Parameters:
rec
- The record to write.
-
close
void close()
Closes the writer.- Specified by:
close
in interfaceAutoCloseable
- Specified by:
close
in interfaceCloseable
-
-