Sha256: 8211bf9a35d1a267d055f39a7bbfabd63939212d3a547cf177a1a8e98c1f653b
Contents?: true
Size: 1.24 KB
Versions: 104
Compression:
Stored size: 1.24 KB
Contents
require_relative '../../version1_0' require_relative '../../relationship' module BELParser module Language module Version1_0 module Relationships # PrognosticBiomarkerFor: +A prognosticBiomarkerFor P+ - # For term A and process term P, +A prognosticBiomarkerFor P+ # indicates that changes in or detection of A is used in some # way to be a prognostic biomarker for the subsequent development # of pathology or biological process P. class PrognosticBiomarkerFor extend Relationship SHORT = :prognosticBiomarkerFor LONG = :prognosticBiomarkerFor DESCRIPTION = ' +A prognosticBiomarkerFor P+ - For term A nd process term P, +A prognosticBiomarkerFor P+ ndicates that changes in or detection of A is used n some way to be a prognostic biomarker for the ubsequent development of pathology or biological rocess P.'.freeze def self.short SHORT end def self.long LONG end def self.description DESCRIPTION end def self.directed? true end end end end end end
Version data entries
104 entries across 104 versions & 1 rubygems