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.212650';
4 17     17   13030 use Moose::Role;
  17         49  
  17         226  
5              
6 17     17   98123 use autodie;
  17         48  
  17         180  
7 17     17   95714 use feature qw(say);
  17         61  
  17         1730  
8              
9 17     17   143 use Bio::MUST::Core::Types;
  17         46  
  17         1035  
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   127 no Moose::Role;
  17         46  
  17         113  
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.212650
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