This file is indexed.

/usr/share/perl5/GO/Parsers/owl_parser.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
28
29
30
31
32
33
34
35
# $Id: owl_parser.pm,v 1.3 2005/04/19 04:35:50 cmungall Exp $
#
#
# 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::Parsers::owl_parser;

=head1 NAME

  GO::Parsers::owl_parser.pm     - turns OWL XML into event stream

=head1 SYNOPSIS

  do not use this class directly; use GO::Parser

=cut

=head1 DESCRIPTION

this parser does a direct translation of XML to events, passed on to the handler

=head1 AUTHOR

=cut

use Exporter;
use base qw(GO::Parsers::base_parser Data::Stag::XMLParser);

sub xslt { 'owl_to_oboxml' }


1;