Class: BELParser::Language::Version1_0::Relationships::CausesNoChange

Inherits:
Object
  • Object
show all
Extended by:
Relationship
Defined in:
lib/bel_parser/language/version1_0/relationships/causes_no_change.rb

Overview

CausesNoChange: A causesNoChange B - For terms A and B, A causesNoChange B indicates that B was observed not to change in response to changes in A. Statements using this relationship correspond to cases where explicit measurement of B demonstrates lack of significant change, not for cases where the state of B is unknown.

Constant Summary collapse

SHORT =
:causesNoChange
LONG =
:causesNoChange
DESCRIPTION =
<<-DOC
CausesNoChange:  +A causesNoChange B+ -  For terms A and B,
+A causesNoChange B+ indicates that B was observed not to
change in response to changes in A. Statements using this
relationship correspond to cases where explicit measurement
of B demonstrates lack of significant change, not for cases
where the state of B is unknown.
DOC

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)


40
41
42
# File 'lib/bel_parser/language/version1_0/relationships/causes_no_change.rb', line 40

def self.causal?
  true
end

.descriptionObject



36
37
38
# File 'lib/bel_parser/language/version1_0/relationships/causes_no_change.rb', line 36

def self.description
  DESCRIPTION
end

.directed?Boolean

Returns:

  • (Boolean)


44
45
46
# File 'lib/bel_parser/language/version1_0/relationships/causes_no_change.rb', line 44

def self.directed?
  true
end

.longObject



32
33
34
# File 'lib/bel_parser/language/version1_0/relationships/causes_no_change.rb', line 32

def self.long
  LONG
end

.shortObject



28
29
30
# File 'lib/bel_parser/language/version1_0/relationships/causes_no_change.rb', line 28

def self.short
  SHORT
end