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 voidclose()Closes the writer.voidwrite(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:
writein interfacehtsjdk.io.Writer<OUTPUT_RECORD>- Parameters:
rec- The record to write.
-
close
void close()
Closes the writer.- Specified by:
closein interfaceAutoCloseable- Specified by:
closein interfaceCloseable
-
-