File Coverage

blib/lib/Bio/MUST/Core/Roles/Aliable.pm
Criterion Covered Total %
statement 15 15 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod n/a
total 20 20 100.0


line stmt bran cond sub pod time code
1             package Bio::MUST::Core::Roles::Aliable;
2             # ABSTRACT: Aliable Moose role (pure interface) for Ali-like objects
3             $Bio::MUST::Core::Roles::Aliable::VERSION = '0.212530';
4 17     17   14562 use Moose::Role;
  17         45  
  17         160  
5              
6 17     17   99173 use autodie;
  17         47  
  17         203  
7 17     17   96099 use feature qw(say);
  17         44  
  17         1777  
8              
9 17     17   144 use Bio::MUST::Core::Types;
  17         50  
  17         1132  
10              
11              
12             requires qw(
13             count_comments all_comments get_comment
14             guessing all_seq_ids has_uniq_ids is_protein is_aligned
15             get_seq get_seq_with_id first_seq all_seqs filter_seqs count_seqs
16             gapmiss_regex
17             );
18              
19 17     17   131 no Moose::Role;
  17         70  
  17         153  
20             1;
21              
22             __END__
23              
24             =pod
25              
26             =head1 NAME
27              
28             Bio::MUST::Core::Roles::Aliable - Aliable Moose role (pure interface) for Ali-like objects
29              
30             =head1 VERSION
31              
32             version 0.212530
33              
34             =head1 SYNOPSIS
35              
36             # TODO
37              
38             =head1 DESCRIPTION
39              
40             # TODO
41              
42             =head1 AUTHOR
43              
44             Denis BAURAIN <denis.baurain@uliege.be>
45              
46             =head1 COPYRIGHT AND LICENSE
47              
48             This software is copyright (c) 2013 by University of Liege / Unit of Eukaryotic Phylogenomics / Denis BAURAIN.
49              
50             This is free software; you can redistribute it and/or modify it under
51             the same terms as the Perl 5 programming language system itself.
52              
53             =cut