Sha256: ce0778c413ab6b3ce20697b1e089c24b5111401abd245a6e1c670810912cbc3c
Contents?: true
Size: 1.69 KB
Versions: 104
Compression:
Stored size: 1.69 KB
Contents
require_relative '../../version1_0' require_relative '../../relationship' module BELParser module Language module Version1_0 module Relationships # ActsIn: +A actsIn f(A)+ - This relationship links # an abundance term to the activity term for the same # abundance. This relationship is direct because it is a _self_ # relationship, the abundance acts in its own activity. For # protein abundance p(A) and its molecular activity kin(p(A), # +p(A) actsIn kin(p(A))+. This relationship is introduced by the # BEL Compiler and may not be used by statements in BEL documents. class ActsIn extend Relationship SHORT = :actsIn LONG = :actsIn DESCRIPTION = ' +A actsIn f(A)+ - This relationship links an bundance term to the activity term for the same bundance. This relationship is direct because t is a _self_ relationship, the abundance acts n its own activity. For protein abundance p(A) nd its molecular activity kin(p(A), +p(A) actsIn in(p(A))+. This relationship is introduced by the EL Compiler and may not be used by statements in EL documents.'.freeze def self.short SHORT end def self.long LONG end def self.description DESCRIPTION end def self.direct? true end def self.directed? true end def self.injected? true end def self.self? true end end end end end end
Version data entries
104 entries across 104 versions & 1 rubygems