File Coverage

GO/Model/Property.pm
Criterion Covered Total %
statement 18 19 94.7
branch n/a
condition n/a
subroutine 6 7 85.7
pod n/a
total 24 26 92.3


line stmt bran cond sub pod time code
1             # $Id: Property.pm,v 1.2 2004/11/24 02:28:02 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             package GO::Model::Property;
11              
12             =head1 NAME
13              
14             GO::Model::Property;
15              
16             =head1 SYNOPSIS
17              
18             =head1 DESCRIPTION
19              
20              
21             =cut
22              
23              
24 14     14   139 use Carp qw(cluck confess);
  14         25  
  14         921  
25 14     14   457 use Exporter;
  14         29  
  14         670  
26 14     14   87 use GO::Utils qw(rearrange);
  14         29  
  14         599  
27 14     14   88 use GO::Model::Root;
  14         28  
  14         329  
28 14     14   84 use strict;
  14         41  
  14         489  
29 14     14   69 use vars qw(@ISA);
  14         34  
  14         1471  
30              
31             @ISA = qw(GO::Model::Root Exporter);
32              
33              
34             sub _valid_params {
35 0     0     return qw(acc name domain_acc range_acc textrule);
36             }
37              
38              
39             1;