Class: BELParser::Language::Version2_0::Relationships::DirectlyDecreases
- Inherits:
-
Object
- Object
- BELParser::Language::Version2_0::Relationships::DirectlyDecreases
show all
- Extended by:
- Relationship
- Defined in:
- lib/bel_parser/language/version2_0/relationships/directly_decreases.rb
Overview
DirectlyDecreases: A =| B - For terms A and B, A directlyDecreases B or A =| B indicates A decreases B and that the mechanism of the causal relationship is based on physical interaction of entities related to A and B. This is a direct version of the decreases relationship.
Constant Summary
collapse
- SHORT =
:'=|'
- LONG =
:directlyDecreases
- DESCRIPTION =
' +A =| B+ - For terms A and B,
A directlyDecreases B or A =| B+ indicates A
ecreases B and that the mechanism of the causal
elationship is based on physical interaction
f entities related to A and B. This is a direct
ersion of the decreases relationship.'.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
.causal? ⇒ Boolean
37
38
39
|
# File 'lib/bel_parser/language/version2_0/relationships/directly_decreases.rb', line 37
def self.causal?
true
end
|
.decreasing? ⇒ Boolean
41
42
43
|
# File 'lib/bel_parser/language/version2_0/relationships/directly_decreases.rb', line 41
def self.decreasing?
true
end
|
.description ⇒ Object
33
34
35
|
# File 'lib/bel_parser/language/version2_0/relationships/directly_decreases.rb', line 33
def self.description
DESCRIPTION
end
|
.direct? ⇒ Boolean
45
46
47
|
# File 'lib/bel_parser/language/version2_0/relationships/directly_decreases.rb', line 45
def self.direct?
true
end
|
.directed? ⇒ Boolean
49
50
51
|
# File 'lib/bel_parser/language/version2_0/relationships/directly_decreases.rb', line 49
def self.directed?
true
end
|
.long ⇒ Object
29
30
31
|
# File 'lib/bel_parser/language/version2_0/relationships/directly_decreases.rb', line 29
def self.long
LONG
end
|
.short ⇒ Object
25
26
27
|
# File 'lib/bel_parser/language/version2_0/relationships/directly_decreases.rb', line 25
def self.short
SHORT
end
|