Sha256: f88c1d12c8fec1fe0568ca0358ebddfa5faad1fdc19d4d9dddc16b3cef3ac9cb
Contents?: true
Size: 1.22 KB
Versions: 11
Compression:
Stored size: 1.22 KB
Contents
require_relative '../../version1_0' require_relative '../../relationship' module BELParser module Language module Version1_0 module Relationships # Association: +A -- B+ - For terms A and B, +A association # B+ or +A -- B+ indicates that A and B are associated in an # unspecified manner. This relationship is used when not enough # information about the association is available to describe # it using more specific relationships, like increases or # positiveCorrelation. class Association extend Relationship SHORT = :'--' LONG = :association DESCRIPTION = <<-DOC Association: +A -- B+ - For terms A and B, +A association B+ or +A -- B+ indicates that A and B are associated in an unspecified manner. This relationship is used when not enough information about the association is available to describe it using more specific relationships, like increases or positiveCorrelation. DOC def self.short SHORT end def self.long LONG end def self.description DESCRIPTION end end end end end end
Version data entries
11 entries across 11 versions & 1 rubygems