Sha256: caf00daa0ecc9aee0a4c91c83ba9f7652a10b88c4c4231571dda130a8c93351b
Contents?: true
Size: 1.28 KB
Versions: 6
Compression:
Stored size: 1.28 KB
Contents
require_relative '../../version2_0' require_relative '../../relationship' module BELParser module Language module Version2_0 module Relationships # ReactantIn: +A reactantIn reaction(reactants(A), products(B))+ - This relationship links abundance terms from the +reactants(<list>)+ in a reaction to the reaction. This is a direct relationship because it is a _self_ relationship. Reactants are consumed directly by a reaction. This relationship is introduced by the BEL Compiler and may not be used by statements in BEL documents. class ReactantIn extend Relationship SHORT = :reactantIn LONG = :reactantIn DESCRIPTION = ' +A reactantIn reaction(reactants(A), products(B))+ - This relationship links abundance terms from the +reactants(<list>)+ in a reaction to the reaction. This is a direct relationship because it is a _self_ relationship. Reactants are consumed directly by a reaction. This relationship is introduced by the BEL Compiler and may not be used by statements in BEL documents.'.freeze def self.short SHORT end def self.long LONG end def self.description DESCRIPTION end end end end end end
Version data entries
6 entries across 6 versions & 1 rubygems