Class: BELParser::Language::Version2_0::Relationships::Association

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

Overview

Association: A – B - For terms A and B, A association B or A – B indicates that A and B are associated in an unspecified manner. This relationship is used when not enough information about the association is available to describe it using more specific relationships, like increases or positiveCorrelation.

Constant Summary collapse

SHORT =
:'--'
LONG =
:association
DESCRIPTION =
' +A -- B+ -  For terms A and B, +A association B+
r +A -- B+ indicates that A and B are associated
n an unspecified manner. This relationship
s used when not enough information about the
ssociation is available to describe it using
ore specific relationships, like increases or
ositiveCorrelation.'.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

.descriptionObject



35
36
37
# File 'lib/bel_parser/language/version2_0/relationships/association.rb', line 35

def self.description
  DESCRIPTION
end

.longObject



31
32
33
# File 'lib/bel_parser/language/version2_0/relationships/association.rb', line 31

def self.long
  LONG
end

.shortObject



27
28
29
# File 'lib/bel_parser/language/version2_0/relationships/association.rb', line 27

def self.short
  SHORT
end