File: obo_xml_parser.pm

package info (click to toggle)
libgo-perl 0.09-1
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 7,392 kB
  • ctags: 888
  • sloc: perl: 13,268; sh: 21; makefile: 6
file content (36 lines) | stat: -rw-r--r-- 719 bytes parent folder | download | duplicates (8)
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
36
# $Id: obo_xml_parser.pm,v 1.3 2004/11/24 02:28:02 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::obo_xml_parser;

=head1 NAME

  GO::Parsers::obo_xml_parser.pm     - Parses xml made from events

=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

the XML used should be the attribute-less xml generated by the
GO::Handlers::XmlOutHandler class

=head1 AUTHOR

=cut

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


1;