Package org.biojava.nbio.sequencing.io.fastq
package org.biojava.nbio.sequencing.io.fastq
FASTQ and variants sequence format I/O.
To read from an Illumina variant FASTQ sequence file:
The Sanger FASTQ file format for sequences with quality scores, and the Solexa/Illumina FASTQ variants
Peter J. A. Cock (Biopython), Christopher J. Fields (BioPerl), Naohisa Goto (BioRuby), Michael L. Heuer (BioJava) and Peter M. Rice (EMBOSS).
Nucleic Acids Research, doi:10.1093/nar/gkp1137
To read from an Illumina variant FASTQ sequence file:
FastqReader reader = new IlluminaFastqReader(); for (Fastq fastq : reader.read(new File("illumina.fastq")) { // ... }To write to an Sanger variant FASTQ sequence file:
Collection<Fastq> fastq = ...; SangerFastqWriter writer = new SangerFastqWriter(); writer.write(new File("sanger.fastq"), fastq);For further documentation on the FASTQ sequence format, its variants, and how they are handled in O|B|F projects, see:
The Sanger FASTQ file format for sequences with quality scores, and the Solexa/Illumina FASTQ variants
Peter J. A. Cock (Biopython), Christopher J. Fields (BioPerl), Naohisa Goto (BioRuby), Michael L. Heuer (BioJava) and Peter M. Rice (EMBOSS).
Nucleic Acids Research, doi:10.1093/nar/gkp1137
- Since:
- 3.0.3
-
ClassDescriptionFASTQ formatted sequence.Fluent builder API for creating FASTQ formatted sequences.Reader for FASTQ formatted sequences.Utility methods for FASTQ formatted sequences.FASTQ sequence format variant.Writer for FASTQ formatted sequences.Reader for
FastqVariant.FASTQ_ILLUMINA
formatted sequences.Writer forFastqVariant.FASTQ_ILLUMINA
formatted sequences.Low-level event based parser callback.Reader forFastqVariant.FASTQ_SANGER
formatted sequences.Writer forFastqVariant.FASTQ_SANGER
formatted sequences.Reader forFastqVariant.FASTQ_SOLEXA
formatted sequences.Writer forFastqVariant.FASTQ_SOLEXA
formatted sequences.Event based parser callback.