GO::Parsers::references_parser - syntax parsing of GO.refences files


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

Index


Code Index:

NAME

Top

  GO::Parsers::references_parser     - syntax parsing of GO.refences files

SYNOPSIS

Top

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

DESCRIPTION

Top

Parses this file:

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


go-perl documentation Contained in the go-perl distribution.
# $Id: references_parser.pm,v 1.1 2006/12/06 02:59:07 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::references_parser;

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

sub _class { 'GOModel:References' }
sub _id_column {'go_ref_id'}
1;