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

NAME

GenOO::Data::File::FASTQ::Record - Object representing a record of a fastq file

SYNOPSIS

    # Object representing a record of a fastq file 

    # To initialize 
    my $fastq_record = GenOO::Data::File::FASTQ::Record->new({
        name      => undef,    #required
        sequence  => undef,    #required
        quality   => undef,    #required
        extra     => undef,
    });

DESCRIPTION

    This object represents a record of a fastq file and offers methods for accessing the different attributes.

EXAMPLES

    # Return record name
    my $name = $fastq_record->name;