File: xrf_abbs_parser.pm

package info (click to toggle)
libgo-perl 0.15-10
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 8,112 kB
  • sloc: perl: 13,147; sh: 21; makefile: 7
file content (38 lines) | stat: -rw-r--r-- 755 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
37
38
# $Id: xrf_abbs_parser.pm,v 1.2 2007/01/24 01:16:20 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::xrf_abbs_parser;

=head1 NAME

  GO::Parsers::xrf_abbs_parser     - syntax parsing of GO xrf_abbs flat files

=head1 SYNOPSIS

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

=cut

=head1 DESCRIPTION

Parses this file:

L<http://www.geneontology.org/doc/GO.xrf_abbs>


=cut

use Exporter;
use base qw(GO::Parsers::generic_tagval_parser);
use strict qw(subs vars refs);

sub _class { 'GOMetaModel:Database' }
sub _id_column {'abbreviation'}
sub _map_property_type { shift;return "GOMetaModel:".shift }

1;