Class: BELParser::Language::Version1_0::Relationships::NegativeCorrelation
- Inherits:
-
Object
- Object
- BELParser::Language::Version1_0::Relationships::NegativeCorrelation
show all
- Extended by:
- Relationship
- Defined in:
- lib/bel_parser/language/version1_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 =
<<-DOC
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.
DOC
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
41
42
43
|
# File 'lib/bel_parser/language/version1_0/relationships/negative_correlation.rb', line 41
def self.correlative?
true
end
|
.decreasing? ⇒ Boolean
45
46
47
|
# File 'lib/bel_parser/language/version1_0/relationships/negative_correlation.rb', line 45
def self.decreasing?
true
end
|
.description ⇒ Object
37
38
39
|
# File 'lib/bel_parser/language/version1_0/relationships/negative_correlation.rb', line 37
def self.description
DESCRIPTION
end
|
.long ⇒ Object
33
34
35
|
# File 'lib/bel_parser/language/version1_0/relationships/negative_correlation.rb', line 33
def self.long
LONG
end
|
.short ⇒ Object
29
30
31
|
# File 'lib/bel_parser/language/version1_0/relationships/negative_correlation.rb', line 29
def self.short
SHORT
end
|