Class: BELParser::Language::Version2_0::Relationships::DirectlyDecreases

Inherits:
Object
  • Object
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

Methods included from Relationship

==, 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

Returns:

  • (Boolean)


37
38
39
# File 'lib/bel_parser/language/version2_0/relationships/directly_decreases.rb', line 37

def self.causal?
  true
end

.decreasing?Boolean

Returns:

  • (Boolean)


41
42
43
# File 'lib/bel_parser/language/version2_0/relationships/directly_decreases.rb', line 41

def self.decreasing?
  true
end

.descriptionObject



33
34
35
# File 'lib/bel_parser/language/version2_0/relationships/directly_decreases.rb', line 33

def self.description
  DESCRIPTION
end

.direct?Boolean

Returns:

  • (Boolean)


45
46
47
# File 'lib/bel_parser/language/version2_0/relationships/directly_decreases.rb', line 45

def self.direct?
  true
end

.directed?Boolean

Returns:

  • (Boolean)


49
50
51
# File 'lib/bel_parser/language/version2_0/relationships/directly_decreases.rb', line 49

def self.directed?
  true
end

.longObject



29
30
31
# File 'lib/bel_parser/language/version2_0/relationships/directly_decreases.rb', line 29

def self.long
  LONG
end

.shortObject



25
26
27
# File 'lib/bel_parser/language/version2_0/relationships/directly_decreases.rb', line 25

def self.short
  SHORT
end