File Coverage

blib/lib/BioX/SeqUtils/Promoter/Annotations/Base.pm
Criterion Covered Total %
statement 3 3 100.0
branch n/a
condition n/a
subroutine 1 1 100.0
pod n/a
total 4 4 100.0


line stmt bran cond sub pod time code
1             package BioX::SeqUtils::Promoter::Annotations::Base;
2             ####################################################################
3             # Charles Stephen Embry #
4             # MidSouth Bioinformatics Center #
5             # University of Arkansas Little Rock #
6             ####################################################################
7 1     1   1805 use base qw(BioX::SeqUtils::Promoter::Base);
  1         2  
  1         77  
8             use Class::Std;
9             use Class::Std::Utils;
10              
11             use warnings;
12             use strict;
13             use Carp;
14              
15             use version; our $VERSION = qv('0.1.1');
16              
17             {
18             my %attribute_of :ATTR( :get :set :default<''> :init_arg );
19            
20             sub BUILD {
21             my ($self, $ident, $arg_ref) = @_;
22            
23              
24             return;
25             }
26              
27             sub START {
28             my ($self, $ident, $arg_ref) = @_;
29            
30              
31             return;
32             }
33              
34             }
35              
36             1; # Magic true value required at end of module
37             __END__