File Coverage

blib/lib/Bio/SeqReader.pm
Criterion Covered Total %
statement 12 12 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 16 16 100.0


line stmt bran cond sub pod time code
1             #! /usr/bin/env perl
2              
3             package Bio::SeqReader;
4              
5 1     1   26138 use 5.010000;
  1         4  
  1         39  
6 1     1   5 use strict;
  1         2  
  1         29  
7 1     1   4 use warnings;
  1         6  
  1         41  
8              
9             require Exporter;
10 1     1   824 use AutoLoader qw(AUTOLOAD);
  1         1733  
  1         11  
11              
12             our @ISA = qw(Exporter);
13             our %EXPORT_TAGS = ( 'all' => [qw( )] );
14             our @EXPORT_OK = ( @{ $EXPORT_TAGS{ 'all' } } );
15             our @EXPORT = qw( );
16             our $VERSION = '0.1.3';
17              
18             # Preloaded methods go here.
19              
20             # Autoload methods go after =cut, and are processed by the autosplit program.
21              
22             1;
23             __END__