File Coverage

blib/lib/Bio/Palantir/Roles/Geneable.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::Geneable;
2             # ABSTRACT: Geneable Moose role for Gene and GenePlus objects
3             $Bio::Palantir::Roles::Geneable::VERSION = '0.200700';
4 1     1   510 use Moose::Role;
  1         3  
  1         6  
5              
6 1     1   4338 use autodie;
  1         2  
  1         8  
7              
8             requires qw(
9             domains rank name genomic_dna_begin
10             genomic_dna_end genomic_dna_coordinates
11             genomic_dna_size genomic_prot_begin
12             genomic_prot_end genomic_prot_coordinates
13             genomic_prot_size protein_sequence
14             );
15              
16              
17 1     1   4505 no Moose::Role;
  1         3  
  1         4  
18             1;
19              
20             __END__
21              
22             =pod
23              
24             =head1 NAME
25              
26             Bio::Palantir::Roles::Geneable - Geneable Moose role for Gene and GenePlus objects
27              
28             =head1 VERSION
29              
30             version 0.200700
31              
32             =head1 SYNOPSIS
33              
34             # TODO
35              
36             =head1 DESCRIPTION
37              
38             # TODO
39              
40             =head1 AUTHOR
41              
42             Loic MEUNIER <lmeunier@uliege.be>
43              
44             =head1 COPYRIGHT AND LICENSE
45              
46             This software is copyright (c) 2019 by University of Liege / Unit of Eukaryotic Phylogenomics / Loic MEUNIER and Denis BAURAIN.
47              
48             This is free software; you can redistribute it and/or modify it under
49             the same terms as the Perl 5 programming language system itself.
50              
51             =cut