GOBO::Formula - GOBO::Formula documentation


GOBO documentation Contained in the GOBO distribution.

Index


Code Index:

NAME

Top

GOBO::Formula

SYNOPSIS

Top

DESCRIPTION

Top

(Advanced OBO ontologies only)

Formulas have the roles GOBO::Attributed and GOBO::Identified. This means they can have metadata attached. For example, who made the formula and when.


GOBO documentation Contained in the GOBO distribution.

package GOBO::Formula;
use Moose;
use strict;
with 'GOBO::Attributed';
with 'GOBO::Identified';

has text => ( is=>'rw', isa=>'Str' );
has language => ( is=>'rw', isa=>'Str' ); # TODO - enum
has associated_with => ( is=>'rw', isa=>'GOBO::Node' );

1;