File Coverage

blib/lib/BioX/CLPM/Peaks.pm
Criterion Covered Total %
statement 1 3 33.3
branch n/a
condition n/a
subroutine 1 1 100.0
pod n/a
total 2 4 50.0


line stmt bran cond sub pod time code
1             package BioX::CLPM::Peaks;
2             #use base qw(BASE);
3 1     1   1948 use Class::Std;
  0            
  0            
4             use Class::Std::Utils;
5              
6             use warnings;
7             use strict;
8             use Carp;
9              
10             use version; our $VERSION = qv('0.0.1');
11              
12             {
13             my %attribute_of :ATTR( :get :set :default<''> :init_arg );
14            
15             sub BUILD {
16             my ($self, $ident, $arg_ref) = @_;
17            
18              
19             return;
20             }
21              
22             sub START {
23             my ($self, $ident, $arg_ref) = @_;
24            
25              
26             return;
27             }
28              
29             }
30              
31             1; # Magic true value required at end of module
32             __END__