Sha256: 0487e761cd4f9234b86789d721049690a017d978ab80397e4381f7185527d798
Contents?: true
Size: 1.12 KB
Versions: 11
Compression:
Stored size: 1.12 KB
Contents
require_relative '../../version2_0' require_relative '../../relationship' module BELParser module Language module Version2_0 module Relationships # BiomarkerFor: +A biomarkerFor P+ - For term A and process term # P, +A biomarkerFor P+ indicates that changes in or detection # of A is used in some way to be a biomarker for pathology or # biological process P. class BiomarkerFor extend Relationship SHORT = :biomarkerFor LONG = :biomarkerFor DESCRIPTION = <<-DOC BiomarkerFor: +A biomarkerFor P+ - For term A and process term P, +A biomarkerFor P+ indicates that changes in or detection of A is used in some way to be a biomarker for 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