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


go-perl documentation Contained in the go-perl distribution.

Index


Code Index:

NAME

Top

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

SYNOPSIS

Top

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

DESCRIPTION

Top

Parses this file:

http://www.geneontology.org/doc/GO.xrf_abbs


go-perl documentation Contained in the go-perl distribution.
# $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;

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;