The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

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();