File Coverage

blib/lib/Bio/MUST/Drivers/Exonerate/Sugar.pm
Criterion Covered Total %
statement 6 6 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 8 8 100.0


line stmt bran cond sub pod time code
1             package Bio::MUST::Drivers::Exonerate::Sugar;
2             # ABSTRACT: Internal class for exonerate driver
3             $Bio::MUST::Drivers::Exonerate::Sugar::VERSION = '0.210160';
4 5     5   3521 use Moose;
  5         16  
  5         33  
5 5     5   35700 use namespace::autoclean;
  5         14  
  5         35  
6              
7              
8             has $_ => (
9             is => 'ro',
10             isa => 'Str',
11             required => 1,
12             ) for qw(
13             query_id target_id
14             );
15              
16             has $_ => (
17             is => 'ro',
18             isa => 'Num',
19             required => 1,
20             ) for qw(
21             query_start query_end query_strand
22             target_start target_end target_strand
23             score
24             );
25              
26             __PACKAGE__->meta->make_immutable;
27             1;
28              
29             __END__
30              
31             =pod
32              
33             =head1 NAME
34              
35             Bio::MUST::Drivers::Exonerate::Sugar - Internal class for exonerate driver
36              
37             =head1 VERSION
38              
39             version 0.210160
40              
41             =head1 SYNOPSIS
42              
43             # TODO
44              
45             =head1 DESCRIPTION
46              
47             # TODO
48              
49             =head1 AUTHOR
50              
51             Denis BAURAIN <denis.baurain@uliege.be>
52              
53             =head1 COPYRIGHT AND LICENSE
54              
55             This software is copyright (c) 2013 by University of Liege / Unit of Eukaryotic Phylogenomics / Denis BAURAIN.
56              
57             This is free software; you can redistribute it and/or modify it under
58             the same terms as the Perl 5 programming language system itself.
59              
60             =cut