|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.biojava3.sequencing.io.fastq.SolexaFastqWriter
public final class SolexaFastqWriter
Writer for FastqVariant.FASTQ_SOLEXA
formatted sequences.
Constructor Summary | |
---|---|
SolexaFastqWriter()
|
Method Summary | ||
---|---|---|
|
append(T appendable,
Fastq... fastq)
Append the specified FASTQ formatted sequences to the specified appendable. |
|
|
append(T appendable,
Iterable<Fastq> fastq)
Append the specified FASTQ formatted sequences to the specified appendable. |
|
protected void |
validate(Fastq fastq)
Validate the specified FASTQ formatted sequence for writing. |
|
void |
write(File file,
Fastq... fastq)
Write the specified FASTQ formatted sequences to the specified file. |
|
void |
write(File file,
Iterable<Fastq> fastq)
Write the specified FASTQ formatted sequences to the specified file. |
|
void |
write(OutputStream outputStream,
Fastq... fastq)
Write the specified FASTQ formatted sequences to the specified output stream. |
|
void |
write(OutputStream outputStream,
Iterable<Fastq> fastq)
Write the specified FASTQ formatted sequences to the specified output stream. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public SolexaFastqWriter()
Method Detail |
---|
protected void validate(Fastq fastq) throws IOException
fastq
- FASTQ formatted sequence to validate, will not be null
IOException
- if the specified FASTQ formatted sequence is not valid for writingpublic final <T extends Appendable> T append(T appendable, Fastq... fastq) throws IOException
append
in interface FastqWriter
T
- extends Appendableappendable
- appendable to append the specified FASTQ formatted sequences to, must not be nullfastq
- variable number of FASTQ formatted sequences to append, must not be null
IOException
- if an I/O error occurspublic final <T extends Appendable> T append(T appendable, Iterable<Fastq> fastq) throws IOException
append
in interface FastqWriter
T
- extends Appendableappendable
- appendable to append the specified FASTQ formatted sequences to, must not be nullfastq
- zero or more FASTQ formatted sequences to append, must not be null
IOException
- if an I/O error occurspublic final void write(File file, Fastq... fastq) throws IOException
write
in interface FastqWriter
file
- file to write to, must not be nullfastq
- variable number of FASTQ formatted sequences to write, must not be null
IOException
- if an I/O error occurspublic final void write(File file, Iterable<Fastq> fastq) throws IOException
write
in interface FastqWriter
file
- file to write to, must not be nullfastq
- zero or more FASTQ formatted sequences to write, must not be null
IOException
- if an I/O error occurspublic final void write(OutputStream outputStream, Fastq... fastq) throws IOException
write
in interface FastqWriter
outputStream
- output stream to write to, must not be nullfastq
- variable number of FASTQ formatted sequences to write, must not be null
IOException
- if an I/O error occurspublic final void write(OutputStream outputStream, Iterable<Fastq> fastq) throws IOException
write
in interface FastqWriter
outputStream
- output stream to write to, must not be nullfastq
- zero or more FASTQ formatted sequences to write, must not be null
IOException
- if an I/O error occurs
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |