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

NAME

Bio::Gonzales::Util::Cerial - convenience functions for yaml storage

SYNOPSIS

    use Bio::Gonzales::Util::YAML;

    my $yaml_string = freeze \%data;
    my $data = thaw $yaml_string;

    freeze_file $filename, \%data ;
    my $data = thaw_file $filename;

DESCRIPTION

    Bio::Gonzales::Util::YAML provides some handy functions to work with yaml data

EXPORT

$yaml_string = freeze($data,...);

$data = thaw($yaml_string);

freeze_file($filename, $data, ...);

$data = thaw_file($filename);