Class: BELParser::Language::Version1_0::Relationships::Association

Inherits:
Object
  • Object
show all
Extended by:
Relationship
Defined in:
lib/bel_parser/language/version1_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 =
<<-DOC
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.
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

.descriptionObject



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

def self.description
  DESCRIPTION
end

.longObject



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

def self.long
  LONG
end

.shortObject



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

def self.short
  SHORT
end