|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
public interface ParseListener
Low-level event based parser callback.
| Method Summary | |
|---|---|
void |
appendQuality(java.lang.String quality)
Notify this listener of a quality line. |
void |
appendSequence(java.lang.String sequence)
Notify this parse listener of an additional sequence line. |
void |
complete()
Notify this listener the FASTQ formatted sequence is complete. |
void |
description(java.lang.String description)
Notify this parse listener of a description line. |
void |
quality(java.lang.String quality)
Notify this listener of a quality line. |
void |
repeatDescription(java.lang.String repeatDescription)
Notify this parse listener of a repeat description line. |
void |
sequence(java.lang.String sequence)
Notify this parse listener of a sequence line. |
| Method Detail |
|---|
void description(java.lang.String description)
throws java.io.IOException
description - description line
java.io.IOException - if an I/O error occurs
void sequence(java.lang.String sequence)
throws java.io.IOException
Note that the sequence in FASTQ format may contain end-of-line characters,
so both this method and appendSequence(String) may be called per FASTQ
formatted sequence.
sequence - sequence line
java.io.IOException - if an I/O error occurs
void appendSequence(java.lang.String sequence)
throws java.io.IOException
Note that the sequence in FASTQ format may contain end-of-line characters, so this method may be called more than once per FASTQ formatted sequence.
sequence - additional sequence line
java.io.IOException - if an I/O error occurs
void repeatDescription(java.lang.String repeatDescription)
throws java.io.IOException
repeatDescription - repeat description line
java.io.IOException - if an I/O error occurs
void quality(java.lang.String quality)
throws java.io.IOException
Note that the quality scores in FASTQ format may contain end-of-line characters,
so both this method and appendQuality(String) may be called per FASTQ
formatted sequence.
quality - quality line
java.io.IOException - if an I/O error occurs
void appendQuality(java.lang.String quality)
throws java.io.IOException
Note that the quality scores in FASTQ format may contain end-of-line characters, so this method may be called more than once per FASTQ formatted sequence.
quality - additional quality line
java.io.IOException - if an I/O error occurs
void complete()
throws java.io.IOException
java.io.IOException - if an I/O error occurs
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||