The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

GenOO::Data::File::FASTQ - Object implementing methods for accessing fastq formatted files

SYNOPSIS

    # Object that manages a fastq file. 

    # To initialize 
    my $file = GenOO::Data::File::FASTQ->new(
        file            => undef,
    );

DESCRIPTION

    This object offers methods to read a fastq file entry by entry

EXAMPLES

    # Read one entry
    my $entry = $fastq_parser->next_record();