Sha256: 4263a7b263c0f2ec129ff8cc481e254dd89eb8bc147b716f2eef7cd03cedd57b
Contents?: true
Size: 1.55 KB
Versions: 11
Compression:
Stored size: 1.55 KB
Contents
require_relative '../../version2_0' require_relative '../../relationship' module BELParser module Language module Version2_0 module Relationships # RateLimitingStepOf: +A rateLimitingStepOf B+ - For process, # activity, or transformation term A and process term B, +A # rateLimitingStepOf B+ indicates +A subProcessOf B+ and +A -> # B+. For example, the catalytic activity of HMG CoA reductase # is a rate-limiting step for cholesterol biosynthesis: <pre> # <code> cat(p(HGNC:HMGCR)) rateLimitingStepOf\ bp(GO:"cholesterol # biosynthetic process") </code> </pre> class RateLimitingStepOf extend Relationship SHORT = :rateLimitingStepOf LONG = :rateLimitingStepOf DESCRIPTION = <<-DOC RateLimitingStepOf: +A rateLimitingStepOf B+ - For process, activity, or transformation term A and process term B, +A rateLimitingStepOf B+ indicates +A subProcessOf B+ and +A -> B+. For example, the catalytic activity of HMG CoA reductase is a rate-limiting step for cholesterol biosynthesis: <pre> <code> cat(p(HGNC:HMGCR)) rateLimitingStepOf\ bp(GO:"cholesterol biosynthetic process") </code> </pre> DOC def self.short SHORT end def self.long LONG end def self.description DESCRIPTION end def self.directed? true end def self.increasing? true end end end end end end
Version data entries
11 entries across 11 versions & 1 rubygems