Sha256: 106a6b1c64d405903ebd324cb3fb153918bcf50355eb521a714eafc52becb128
Contents?: true
Size: 1.37 KB
Versions: 11
Compression:
Stored size: 1.37 KB
Contents
require_relative '../../version1_0' require_relative '../../relationship' module BELParser module Language module Version1_0 module Relationships # 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. class TranscribedTo extend Relationship SHORT = :':>' LONG = :transcribedTo DESCRIPTION = <<-DOC 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. DOC def self.short SHORT end def self.long LONG end def self.description DESCRIPTION end def self.direct? true end def self.directed? true end def self.genomic? true end end end end end end
Version data entries
11 entries across 11 versions & 1 rubygems