Sha256: 04a57ac9d70f12e74a0b57d75513921fb3b6f0f76f0cdbaeee4325b608bead66

Contents?: true

Size: 1.37 KB

Versions: 11

Compression:

Stored size: 1.37 KB

Contents

require_relative '../../version2_0'
require_relative '../../relationship'

module BELParser
  module Language
    module Version2_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

Version Path
bel_parser-1.1.6-java lib/bel_parser/language/version2_0/relationships/transcribed_to.rb
bel_parser-1.1.6 lib/bel_parser/language/version2_0/relationships/transcribed_to.rb
bel_parser-1.1.5 lib/bel_parser/language/version2_0/relationships/transcribed_to.rb
bel_parser-1.1.4-java lib/bel_parser/language/version2_0/relationships/transcribed_to.rb
bel_parser-1.1.4 lib/bel_parser/language/version2_0/relationships/transcribed_to.rb
bel_parser-1.1.3-java lib/bel_parser/language/version2_0/relationships/transcribed_to.rb
bel_parser-1.1.3 lib/bel_parser/language/version2_0/relationships/transcribed_to.rb
bel_parser-1.1.2-java lib/bel_parser/language/version2_0/relationships/transcribed_to.rb
bel_parser-1.1.2 lib/bel_parser/language/version2_0/relationships/transcribed_to.rb
bel_parser-1.1.1-java lib/bel_parser/language/version2_0/relationships/transcribed_to.rb
bel_parser-1.1.1 lib/bel_parser/language/version2_0/relationships/transcribed_to.rb