|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface FastqWriter
Writer for FASTQ formatted sequences.
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. |
|
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. |
Method Detail |
---|
<T extends Appendable> T append(T appendable, Fastq... fastq) throws IOException
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 IO error occurs<T extends Appendable> T append(T appendable, Iterable<Fastq> fastq) throws IOException
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 IO error occursvoid write(File file, Fastq... fastq) throws IOException
file
- file to write to, must not be nullfastq
- variable number of FASTQ formatted sequences to write, must not be null
IOException
- if an IO error occursvoid write(File file, Iterable<Fastq> fastq) throws IOException
file
- file to write to, must not be nullfastq
- zero or more FASTQ formatted sequences to write, must not be null
IOException
- if an IO error occursvoid write(OutputStream outputStream, Fastq... fastq) throws IOException
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 IO error occursvoid write(OutputStream outputStream, Iterable<Fastq> fastq) throws IOException
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 IO error occurs
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |