Compress-BGZF
view release on metacpan or search on metacpan
my $builder = $deployer->new(
module_name => 'Compress::BGZF',
license => 'GPL_3',
dist_author => q{Jeremy Volkening <volkening@cpan.org>},
configure_requires => {
'Config' => 0,
'Module::Build' => 0,
},
build_requires => {
'Test::More' => 0,
'Test::Fatal' => 0,
},
requires => {
'Compress::Zlib' => 0,
'IO::Uncompress::RawInflate' => 0,
'IO::Compress::RawDeflate' => 0,
'List::Util' => 0,
},
meta_merge => {
resources => {
repository => 'https://github.com/jvolkening/p5-Compress-BGZF'
Revision history for Compress-BGZF
0.007001 2024-02-19
Add missing Test::Fatal prereq
0.007 2024-02-09
Can now emulate htslib EOF empty blocks
Increased test suite coverage
Tweaks to bgzip.pl demo program
0.006 2020-01-10
Fixed missing exception handling for failed buffered writes (thanks to Paul Kolano)
Fixed variable initialization in Reader causing problems with empty inputs
0.005 2016-08-30
Fixed serious bug causing duplicated filehandles between objects
0.004 2016-05-16
"gpl_3"
],
"meta-spec" : {
"url" : "http://search.cpan.org/perldoc?CPAN::Meta::Spec",
"version" : 2
},
"name" : "Compress-BGZF",
"prereqs" : {
"build" : {
"requires" : {
"Test::Fatal" : "0",
"Test::More" : "0"
}
},
"configure" : {
"requires" : {
"Config" : "0",
"Module::Build" : "0"
}
},
"runtime" : {
---
abstract: 'Read/write blocked GZIP (BGZF) files'
author:
- 'Jeremy Volkening <volkening@cpan.org>'
build_requires:
Test::Fatal: '0'
Test::More: '0'
configure_requires:
Config: '0'
Module::Build: '0'
dynamic_config: 1
generated_by: 'Module::Build version 0.4234, CPAN::Meta::Converter version 2.150010'
license: gpl
meta-spec:
url: http://module-build.sourceforge.net/META-spec-v1.4.html
version: '1.4'
t/bgzf_fh.t view on Meta::CPAN
#!/usr/bin/perl
use strict;
use warnings;
use Test::Fatal;
use Test::More qw/no_plan/;
use FindBin;
use Compress::BGZF;
use Compress::BGZF::Reader;
use Compress::BGZF::Writer;
use File::Temp qw/tempfile/;
use IO::Handle;
chdir $FindBin::Bin;
t/bgzf_obj.t view on Meta::CPAN
#!/usr/bin/perl
use strict;
use warnings;
use Test::Fatal;
use Test::More qw/no_plan/;
use FindBin;
use Compress::BGZF;
use Compress::BGZF::Reader;
use Compress::BGZF::Writer;
use File::Basename qw/basename/;
use File::Copy qw/copy/;
use File::Temp qw/tempfile/;
use IO::Handle;
use Digest::MD5;
( run in 2.634 seconds using v1.01-cache-2.11-cpan-54e63673c56 )