File Coverage

GO/Model/Ontology.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             # $Id: Ontology.pm,v 1.2 2004/11/24 02:28:01 cmungall Exp $
2             #
3             # This GO module is maintained by Chris Mungall
4             #
5             # see also - http://www.geneontology.org
6             # - http://www.godatabase.org/dev
7             #
8             # You may distribute this module under the same terms as perl itself
9              
10              
11             package GO::Model::Ontology;
12              
13             =head1 NAME
14              
15             GO::Model::Ontology;
16              
17             =head1 SYNOPSIS
18              
19             this is a synonym for GO::Model::Graph
20              
21             =head1 DESCRIPTION
22              
23             =cut
24              
25 14     14   88 use base qw(GO::Model::Graph);
  14         31  
  14         1581  
26              
27             1;