GOBO::Gene - GOBO::Gene documentation


GOBO documentation Contained in the GOBO distribution.

Index


Code Index:

NAME

Top

GOBO::Gene

SYNOPSIS

Top

  printf '%s "%s" %s %s', $n->id, $n->label, $n->type, $n->taxon;

DESCRIPTION

Top

An GOBO::Node that corresponds to a specific SO:gene

In GO, genes are the subject of GOBO::Annotation statements

TBD

This should really be in bioperl.

Modeled as nodes as they can be elements in a graph. cf Chado


GOBO documentation Contained in the GOBO distribution.

package GOBO::Gene;
use Moose;
use strict;
extends 'GOBO::Node';
use GOBO::Node;

has type => (is=>'rw', isa=>'GOBO::Node', coerce=>1);
has taxon => (is=>'rw', isa=>'GOBO::Node', coerce=>1);

1;