Sha256: 07cc01b8d4a9439f6b96259979aead26ef4c7ed814e3440f719d557f621024a2
Contents?: true
Size: 989 Bytes
Versions: 6
Compression:
Stored size: 989 Bytes
Contents
require_relative '../../version2_0' require_relative '../../relationship' module BELParser module Language module Version2_0 module Relationships # Analogous: +A analogous B+ - For terms A and B, +A analogousTo B+ indicates that A and B represent abundances or molecular activities in different species which function in a similar manner. class Analogous extend Relationship SHORT = :analogous LONG = :analogous DESCRIPTION = ' +A analogous B+ - For terms A and B, +A analogousTo B+ indicates that A and B represent abundances or molecular activities in different species which function in a similar manner.'.freeze def self.short SHORT end def self.long LONG end def self.description DESCRIPTION end def self.deprecated? true end end end end end end
Version data entries
6 entries across 6 versions & 1 rubygems