Bioinfo
view release on metacpan or search on metacpan
"IO::All" => 0,
"List::Util" => 0,
"Modern::Perl" => 0,
"Moo" => 0,
"MooX::Cmd" => 0,
"MooX::Options" => 0,
"Moose" => 0,
"Parallel::ForkManager" => 0,
"XML::Twig" => 0,
"lib" => 0,
"namespace::autoclean" => 0,
"namespace::clean" => 0,
"strict" => 0,
"warnings" => 0
},
"script_files" => [
"bin/biotools"
],
"test_requires" => {
"Test::More" => "0.88",
"Test::Pod" => 0,
"IO::All" : "0",
"List::Util" : "0",
"Modern::Perl" : "0",
"Moo" : "0",
"MooX::Cmd" : "0",
"MooX::Options" : "0",
"Moose" : "0",
"Parallel::ForkManager" : "0",
"XML::Twig" : "0",
"lib" : "0",
"namespace::autoclean" : "0",
"namespace::clean" : "0",
"strict" : "0",
"warnings" : "0"
}
},
"test" : {
"requires" : {
"Test::More" : "0.88",
"Test::Pod" : "0",
"Test::Pod::Coverage" : "1.00"
IO::All: '0'
List::Util: '0'
Modern::Perl: '0'
Moo: '0'
MooX::Cmd: '0'
MooX::Options: '0'
Moose: '0'
Parallel::ForkManager: '0'
XML::Twig: '0'
lib: '0'
namespace::autoclean: '0'
namespace::clean: '0'
strict: '0'
warnings: '0'
version: 0.1.15
x_serialization_backend: 'YAML::Tiny version 1.70'
lib/Bioinfo/PBS.pm view on Meta::CPAN
package Bioinfo::PBS;
use Moose;
use Modern::Perl;
use IO::All;
use namespace::autoclean;
our $VERSION = '0.1.15'; # VERSION:
# ABSTRACT: my perl module and CLIs for Biology
has cpu => (
is => 'rw',
isa => 'Int',
default => sub {'1'},
lazy => 1,
lib/Bioinfo/PBS/Queue.pm view on Meta::CPAN
package Bioinfo::PBS::Queue;
use Moose;
use Modern::Perl;
use Parallel::ForkManager;
use IO::All;
use List::Util 'uniq';
use namespace::autoclean;
our $VERSION = '0.1.15'; # VERSION:
# ABSTRACT: used to submit a batch of task to Torque cluster
has tasks => (
is => 'rw',
isa => 'ArrayRef[Bioinfo::PBS]',
default => sub { [] },
traits => ['Array'],
( run in 0.277 second using v1.01-cache-2.11-cpan-a5abf4f5562 )