Sha256: da3590c78bf7a7900061bd157e0756359619221af89cdf39f361ab835f288e49
Contents?: true
Size: 1.41 KB
Versions: 11
Compression:
Stored size: 1.41 KB
Contents
require_relative '../../version2_0' require_relative '../../relationship' module BELParser module Language module Version2_0 module Relationships # Regulates: +A regulates B+ - For terms A and B, A regulates # B or A reg B indicate that A is reported to have an effect on # B, but information is missing about whether A increases B or # A decreases B. This relationship provides more information # than association, because the upstream entity (source term) # and downstream entity (target term) can be assigned. class Regulates extend Relationship SHORT = :reg LONG = :regulates DESCRIPTION = <<-DOC Regulates: +A regulates B+ - For terms A and B, A regulates B or A reg B indicate that A is reported to have an effect on B, but information is missing about whether A increases B or A decreases B. This relationship provides more information than association, because the upstream entity (source term) and downstream entity (target term) can be assigned. DOC def self.short SHORT end def self.long LONG end def self.description DESCRIPTION end def self.causal? true end def self.directed? true end end end end end end
Version data entries
11 entries across 11 versions & 1 rubygems