Sha256: 9fd652c6136c307e9a1698d97c17223a820c4800770eda6662aacb0af1a8a178

Contents?: true

Size: 1.58 KB

Versions: 11

Compression:

Stored size: 1.58 KB

Contents

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

module BELParser
  module Language
    module Version2_0
      module Relationships
        # Translocates:  +translocation(A, ns1:v1, ns2:v2) translocates
        # A+ -  This relationship links the abundance term in a
        # +translocation()+ to the translocation. This relationship is
        # direct because it is a _self_ relationship. The translocated
        # abundance is directly acted on by the translocation
        # process. This relationship is introduced by the BEL Compiler
        # and may not be used by statements in BEL documents.
        class Translocates
          extend Relationship

          SHORT       = :translocates
          LONG        = :translocates

          DESCRIPTION = <<-DOC
Translocates:  +translocation(A, ns1:v1, ns2:v2) translocates
A+ -  This relationship links the abundance term in a
+translocation()+ to the translocation. This relationship is
direct because it is a _self_ relationship. The translocated
abundance is directly acted on by the translocation
process. This relationship is introduced by the BEL Compiler
and may not be used by statements in BEL documents.
          DOC

          def self.short
            SHORT
          end

          def self.long
            LONG
          end

          def self.description
            DESCRIPTION
          end

          def self.directed?
            true
          end

          def self.injected?
            true
          end

          def self.self?
            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/translocates.rb
bel_parser-1.1.6 lib/bel_parser/language/version2_0/relationships/translocates.rb
bel_parser-1.1.5 lib/bel_parser/language/version2_0/relationships/translocates.rb
bel_parser-1.1.4-java lib/bel_parser/language/version2_0/relationships/translocates.rb
bel_parser-1.1.4 lib/bel_parser/language/version2_0/relationships/translocates.rb
bel_parser-1.1.3-java lib/bel_parser/language/version2_0/relationships/translocates.rb
bel_parser-1.1.3 lib/bel_parser/language/version2_0/relationships/translocates.rb
bel_parser-1.1.2-java lib/bel_parser/language/version2_0/relationships/translocates.rb
bel_parser-1.1.2 lib/bel_parser/language/version2_0/relationships/translocates.rb
bel_parser-1.1.1-java lib/bel_parser/language/version2_0/relationships/translocates.rb
bel_parser-1.1.1 lib/bel_parser/language/version2_0/relationships/translocates.rb