File Coverage

blib/lib/Bio/Metabolic.pm
Criterion Covered Total %
statement 16 18 88.8
branch n/a
condition n/a
subroutine 6 6 100.0
pod n/a
total 22 24 91.6


line stmt bran cond sub pod time code
1             package Bio::Metabolic;
2              
3             require 5.005_62;
4 5     5   4892 use strict;
  5         11  
  5         233  
5 5     5   31 use warnings;
  5         10  
  5         266  
6              
7             require Exporter;
8              
9 5     5   3795 use Bio::Metabolic::Substrate;
  5         13  
  5         141  
10 5     5   9936 use Bio::Metabolic::Substrate::Cluster;
  5         13  
  5         246  
11 5     5   3855 use Bio::Metabolic::Reaction;
  5         13  
  5         290  
12 5     5   5495 use Bio::Metabolic::Network;
  0            
  0            
13              
14             #use Bio::Metabolic::Network::Graph;
15             #use Bio::Metabolic::NetworkDB;
16             #use Bio::Metabolic::ConservationRule;
17              
18             our @ISA = qw(Exporter);
19              
20             # Items to export into callers namespace by default. Note: do not export
21             # names by default without a very good reason. Use EXPORT_OK instead.
22             # Do not simply export all your public functions/methods/constants.
23              
24             # This allows declaration use Bio::Metabolic ':all';
25             # If you do not need this, moving things directly into @EXPORT or @EXPORT_OK
26             # will save memory.
27             our %EXPORT_TAGS = (
28             'all' => [
29             qw(
30              
31             )
32             ]
33             );
34              
35             our @EXPORT_OK = ( @{ $EXPORT_TAGS{'all'} } );
36              
37             our @EXPORT = qw(
38              
39             );
40             our $VERSION = '0.07';
41              
42             # Preloaded methods go here.
43              
44             # Autoload methods go after =cut, and are processed by the autosplit program.
45              
46             1;
47             __END__