File Coverage

blib/lib/Bio/Palantir/Roles/Clusterable.pm
Criterion Covered Total %
statement 9 9 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 12 12 100.0


line stmt bran cond sub pod time code
1             package Bio::Palantir::Roles::Clusterable;
2             # ABSTRACT: Clusterable Moose role for Cluster and ClusterPlus objects
3             $Bio::Palantir::Roles::Clusterable::VERSION = '0.211420';
4 1     1   795 use Moose::Role;
  1         4  
  1         10  
5              
6 1     1   5906 use autodie;
  1         4  
  1         10  
7              
8             requires qw(
9             modules genes rank type sequence
10             genomic_prot_begin genomic_prot_end genomic_prot_size
11             genomic_prot_coordinates genomic_dna_begin genomic_dna_end
12             genomic_dna_size genomic_dna_coordinates
13             );
14              
15              
16 1     1   5722 no Moose::Role;
  1         2  
  1         7  
17             1;
18              
19             __END__
20              
21             =pod
22              
23             =head1 NAME
24              
25             Bio::Palantir::Roles::Clusterable - Clusterable Moose role for Cluster and ClusterPlus objects
26              
27             =head1 VERSION
28              
29             version 0.211420
30              
31             =head1 SYNOPSIS
32              
33             # TODO
34              
35             =head1 DESCRIPTION
36              
37             # TODO
38              
39             =head1 AUTHOR
40              
41             Loic MEUNIER <lmeunier@uliege.be>
42              
43             =head1 COPYRIGHT AND LICENSE
44              
45             This software is copyright (c) 2019 by University of Liege / Unit of Eukaryotic Phylogenomics / Loic MEUNIER and Denis BAURAIN.
46              
47             This is free software; you can redistribute it and/or modify it under
48             the same terms as the Perl 5 programming language system itself.
49              
50             =cut