Class: BELParser::Language::Version2_0::Relationships::Orthologous

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

Overview

Orthologous: A orthologous B - For geneAbundance terms A and B, A orthologousTo B indicates that A and B represent abundances of genes in different species which are sequence similar and which are therefore presumed to share a common ancestral gene. For example, g(HGNC:AKT1) orthologousTo g(MGI:AKT1) indicates that the mouse and human AKT1 genes are orthologous.

Constant Summary collapse

SHORT =
:orthologous
LONG =
:orthologous
DESCRIPTION =
<<-DOC
Orthologous:  +A orthologous B+ -  For geneAbundance terms A
and B, +A orthologousTo B+ indicates that A and B represent
abundances of genes in different species which are sequence
similar and which are therefore presumed to share a common
ancestral gene. For example, +g(HGNC:AKT1) orthologousTo
g(MGI:AKT1)+ indicates that the mouse and human AKT1 genes
are orthologous.
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



39
40
41
# File 'lib/bel_parser/language/version2_0/relationships/orthologous.rb', line 39

def self.description
  DESCRIPTION
end

.genomic?Boolean

Returns:

  • (Boolean)


43
44
45
# File 'lib/bel_parser/language/version2_0/relationships/orthologous.rb', line 43

def self.genomic?
  true
end

.longObject



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

def self.long
  LONG
end

.shortObject



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

def self.short
  SHORT
end