Sha256: 63cfe0d70bd317c381f36925ae6729d742be1ed33634c086aa4f5d54dc1cfd9f
Contents?: true
Size: 1.21 KB
Versions: 6
Compression:
Stored size: 1.21 KB
Contents
require_relative '../../version1_0' require_relative '../../relationship' module BELParser module Language module Version1_0 module Relationships # HasModification: +p(A) hasModification p(A, pmod(P, S, 473))+ - This relationship links abundance terms modified by the +pmod()+ function to the unmodified abundance term. This is a direct relationship because it is a _self_ relationship. This relationship is introduced by the BEL Compiler and may not be used by statements in BEL documents. class HasModification extend Relationship SHORT = :hasModification LONG = :hasModification DESCRIPTION = ' +p(A) hasModification p(A, pmod(P, S, 473))+ - This relationship links abundance terms modified by the +pmod()+ function to the unmodified abundance term. This is a direct relationship because it is a _self_ relationship. 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