Class: BELParser::Language::Version2_0::Relationships::NegativeCorrelation
- Inherits:
-
Object
- Object
- BELParser::Language::Version2_0::Relationships::NegativeCorrelation
show all
- Extended by:
- Relationship
- Defined in:
- lib/bel_parser/language/version2_0/relationships/negative_correlation.rb
Overview
NegativeCorrelation: A negativeCorrelation B - For terms A and B, A negativeCorrelation B indicates that changes in A and B have been observed to be negatively correlated. The order of the subject and object does not affect the interpretation of the statement, thus B negativeCorrelation A is equivalent to A negativeCorrelation B.
Constant Summary
collapse
- SHORT =
:negativeCorrelation
- LONG =
:negativeCorrelation
- DESCRIPTION =
' +A negativeCorrelation B+ - For terms A and B,
A negativeCorrelation B+ indicates that changes
n A and B have been observed to be negatively
orrelated. The order of the subject and object does
ot affect the interpretation of the statement,
hus B negativeCorrelation A is equivalent to A
egativeCorrelation B.'.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
.correlative? ⇒ Boolean
39
40
41
|
# File 'lib/bel_parser/language/version2_0/relationships/negative_correlation.rb', line 39
def self.correlative?
true
end
|
.decreasing? ⇒ Boolean
43
44
45
|
# File 'lib/bel_parser/language/version2_0/relationships/negative_correlation.rb', line 43
def self.decreasing?
true
end
|
.description ⇒ Object
35
36
37
|
# File 'lib/bel_parser/language/version2_0/relationships/negative_correlation.rb', line 35
def self.description
DESCRIPTION
end
|
.long ⇒ Object
31
32
33
|
# File 'lib/bel_parser/language/version2_0/relationships/negative_correlation.rb', line 31
def self.long
LONG
end
|
.short ⇒ Object
27
28
29
|
# File 'lib/bel_parser/language/version2_0/relationships/negative_correlation.rb', line 27
def self.short
SHORT
end
|