Sha256: c43a0ff2eb5738c6ab39a6a4998c3912f436f9c1ca9ba3680b9d21fb5db3e2b2
Contents?: true
Size: 1.29 KB
Versions: 11
Compression:
Stored size: 1.29 KB
Contents
require_relative '../../version2_0' require_relative '../../relationship' module BELParser module Language module Version2_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 = <<-DOC 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. DOC def self.short SHORT end def self.long LONG end def self.description DESCRIPTION end def self.deprecated? true end def self.directed? true end end end end end end
Version data entries
11 entries across 11 versions & 1 rubygems