public final class SangerFastqReader extends Object
FastqVariant.FASTQ_SANGER formatted sequences.| Constructor and Description | 
|---|
SangerFastqReader()  | 
| Modifier and Type | Method and Description | 
|---|---|
protected FastqVariant | 
getVariant()
Return the FASTQ sequence format variant for this reader. 
 | 
void | 
parse(Readable readable,
     ParseListener listener)
Parse the specified readable. 
 | 
Iterable<Fastq> | 
read(File file)
Read zero or more FASTQ formatted sequences from the specified file. 
 | 
Iterable<Fastq> | 
read(InputStream inputStream)
Read zero or more FASTQ formatted sequences from the specified input stream. 
 | 
Iterable<Fastq> | 
read(URL url)
Read zero or more FASTQ formatted sequences from the specified url. 
 | 
void | 
stream(Readable readable,
      StreamListener listener)
Stream the specified readable. 
 | 
protected FastqVariant getVariant()
public final void parse(Readable readable, ParseListener listener) throws IOException
FastqReaderparse in interface FastqReaderreadable - readable, must not be nulllistener - low-level event based parser callback, must not be nullIOException - if an I/O error occurspublic final void stream(Readable readable, StreamListener listener) throws IOException
FastqReaderstream in interface FastqReaderreadable - readable, must not be nulllistener - event based reader callback, must not be nullIOException - if an I/O error occurspublic final Iterable<Fastq> read(File file) throws IOException
FastqReaderread in interface FastqReaderfile - file to read from, must not be nullIOException - if an I/O error occurspublic final Iterable<Fastq> read(URL url) throws IOException
FastqReaderread in interface FastqReaderurl - URL to read from, must not be nullIOException - if an I/O error occurspublic final Iterable<Fastq> read(InputStream inputStream) throws IOException
FastqReaderread in interface FastqReaderinputStream - input stream to read from, must not be nullIOException - if an I/O error occursCopyright © 2000–2016 BioJava. All rights reserved.