This file is indexed.

/usr/share/perl5/GO/Model/Ontology.pm is in libgo-perl 0.15-5.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# $Id: Ontology.pm,v 1.2 2004/11/24 02:28:01 cmungall Exp $
#
# This GO module is maintained by Chris Mungall <cjm@fruitfly.org>
#
# see also - http://www.geneontology.org
#          - http://www.godatabase.org/dev
#
# You may distribute this module under the same terms as perl itself


package GO::Model::Ontology;

=head1 NAME

  GO::Model::Ontology - synonym for GO::Model::Graph

=head1 SYNOPSIS

  this is a synonym for GO::Model::Graph

=head1 DESCRIPTION

=cut

use base qw(GO::Model::Graph);

1;