Class: BELParser::Language::Version2_0::Relationships::TranscribedTo

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

Overview

TranscribedTo: G :> R - For rnaAbundance term R and geneAbundance term G, G transcribedTo R or G :> R indicates that members of R are produced by the transcription of members of G. For example: g(HGNC:AKT1) :> r(HGNC:AKT1) indicates that the human AKT1 RNA is transcribed from the human AKT1 gene.

Constant Summary collapse

SHORT =
:':>'
LONG =
:transcribedTo
DESCRIPTION =
' +G :> R+ -  For rnaAbundance term R and
eneAbundance term G, +G transcribedTo R+ or +G :>
+ indicates that members of R are produced by
he transcription of members of G. For example:
g(HGNC:AKT1) :> r(HGNC:AKT1)+ indicates that
he human AKT1 RNA is transcribed from the human
KT1 gene.'.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



34
35
36
# File 'lib/bel_parser/language/version2_0/relationships/transcribed_to.rb', line 34

def self.description
  DESCRIPTION
end

.direct?Boolean

Returns:

  • (Boolean)


38
39
40
# File 'lib/bel_parser/language/version2_0/relationships/transcribed_to.rb', line 38

def self.direct?
  true
end

.directed?Boolean

Returns:

  • (Boolean)


42
43
44
# File 'lib/bel_parser/language/version2_0/relationships/transcribed_to.rb', line 42

def self.directed?
  true
end

.genomic?Boolean

Returns:

  • (Boolean)


46
47
48
# File 'lib/bel_parser/language/version2_0/relationships/transcribed_to.rb', line 46

def self.genomic?
  true
end

.longObject



30
31
32
# File 'lib/bel_parser/language/version2_0/relationships/transcribed_to.rb', line 30

def self.long
  LONG
end

.shortObject



26
27
28
# File 'lib/bel_parser/language/version2_0/relationships/transcribed_to.rb', line 26

def self.short
  SHORT
end