Sha256: 826800f5c9e2a89502db71284c907c3c4dd32c5d5ff9f02cbd854e6e99ac91f1
Contents?: true
Size: 1.14 KB
Versions: 6
Compression:
Stored size: 1.14 KB
Contents
require_relative '../../version1_0' require_relative '../../relationship' module BELParser module Language module Version1_0 module Relationships # HasVariant: +p(A) hasVariant p(A, sub(G, 12, V))+ - This relationship links abundance terms modified by the +substitution()+, +fusion()+, or +truncation()+ functions to the unmodified abundance term. This relationship is introduced by the BEL Compiler and does not need to be used by statements in BEL documents. class HasVariant extend Relationship SHORT = :hasVariant LONG = :hasVariant DESCRIPTION = ' +p(A) hasVariant p(A, sub(G, 12, V))+ - This relationship links abundance terms modified by the +substitution()+, +fusion()+, or +truncation()+ functions to the unmodified abundance term. This relationship is introduced by the BEL Compiler and does not need to 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