File Coverage

blib/lib/Bio/Metabolic/Dynamics.pm
Criterion Covered Total %
statement 7 9 77.7
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 10 12 83.3


line stmt bran cond sub pod time code
1              
2             =head1 NAME
3              
4             Bio::Metabolic::Dynamics - Dynamical features for biochemical reaction networks
5              
6             =head1 SYNOPSIS
7              
8             use Bio::Metabolic::Dynamics;
9              
10              
11             =head1 DESCRIPTION
12              
13             This module contains all methods and features that depend on Math::Symbolic.
14             This way the user can decide whether he wishes to have support of Symbolic::Math
15             and wants to make use of the reaction rates.
16              
17             =head1 AUTHOR
18              
19             Oliver Ebenhoeh, oliver.ebenhoeh@rz.hu-berlin.de
20              
21             =head1 SEE ALSO
22              
23             Bio::Metabolic
24             Bio::Metabolic::Substrate
25             Bio::Metabolic::Substrate::Cluster
26             Bio::Metabolic::Reaction
27             Bio::Metabolic::Network
28              
29             =cut
30              
31             package Bio::Metabolic::Dynamics;
32              
33             require 5.005_62;
34 1     1   2333 use strict;
  1         2  
  1         38  
35 1     1   5 use warnings;
  1         2  
  1         41  
36              
37             require Exporter;
38              
39 1     1   49 use Bio::Metabolic;
  0            
  0            
40              
41             use Math::Symbolic;
42              
43             use Bio::Metabolic::Dynamics::Substrate;
44             use Bio::Metabolic::Dynamics::Reaction;
45             use Bio::Metabolic::Dynamics::Network;
46              
47             our $VERSION = '0.06';