Class: BELParser::Language::Version2_0::Relationships::RateLimitingStepOf
- Inherits:
-
Object
- Object
- BELParser::Language::Version2_0::Relationships::RateLimitingStepOf
show all
- Extended by:
- Relationship
- Defined in:
- lib/bel_parser/language/version2_0/relationships/rate_limiting_step_of.rb
Overview
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> cat(p(HGNC:HMGCR)) rateLimitingStepOf\ bp(GO:"cholesterol biosynthetic process") </pre>
Constant Summary
collapse
- SHORT =
:rateLimitingStepOf
- LONG =
:rateLimitingStepOf
- DESCRIPTION =
' +A rateLimitingStepOf B+ - For process,
ctivity, or transformation term A and process
erm B, +A rateLimitingStepOf B+ indicates
A subProcessOf B+ and +A -> B+. For example,
he catalytic activity of HMG CoA reductase is a
ate-limiting step for cholesterol biosynthesis:
pre> <code> cat(p(HGNC:HMGCR)) rateLimitingStepOf\
p(GO:"cholesterol biosynthetic process") </code>
/pre>'.freeze
Class Method Summary
collapse
==, causal?, correlative?, decreasing?, deprecated?, description, direct?, directed?, genomic?, increasing?, indirect?, injected?, listable?, long, self?, short, to_h, to_s, to_sym
Class Method Details
.description ⇒ Object
38
39
40
|
# File 'lib/bel_parser/language/version2_0/relationships/rate_limiting_step_of.rb', line 38
def self.description
DESCRIPTION
end
|
.directed? ⇒ Boolean
42
43
44
|
# File 'lib/bel_parser/language/version2_0/relationships/rate_limiting_step_of.rb', line 42
def self.directed?
true
end
|
.increasing? ⇒ Boolean
46
47
48
|
# File 'lib/bel_parser/language/version2_0/relationships/rate_limiting_step_of.rb', line 46
def self.increasing?
true
end
|
.long ⇒ Object
34
35
36
|
# File 'lib/bel_parser/language/version2_0/relationships/rate_limiting_step_of.rb', line 34
def self.long
LONG
end
|
.short ⇒ Object
30
31
32
|
# File 'lib/bel_parser/language/version2_0/relationships/rate_limiting_step_of.rb', line 30
def self.short
SHORT
end
|