Sha256: 0129db79528f320b108b48a60b18765d1f0462cbe2d14703d07ecd28a5e1dd97

Contents?: true

Size: 1.64 KB

Versions: 11

Compression:

Stored size: 1.64 KB

Contents

require_relative '../../version1_0'
require_relative '../../relationship'

module BELParser
  module Language
    module Version1_0
      module Relationships
        # ActsIn:  +A actsIn f(A)+ -  This relationship links
        # an abundance term to the activity term for the same
        # abundance. This relationship is direct because it is a _self_
        # relationship, the abundance acts in its own activity. For
        # protein abundance p(A) and its molecular activity kin(p(A),
        # +p(A) actsIn kin(p(A))+. This relationship is introduced by the
        # BEL Compiler and may not be used by statements in BEL documents.
        class ActsIn
          extend Relationship

          SHORT       = :actsIn
          LONG        = :actsIn
          DESCRIPTION = <<-DOC
ActsIn:  +A actsIn f(A)+ -  This relationship links
an abundance term to the activity term for the same
abundance. This relationship is direct because it is a _self_
relationship, the abundance acts in its own activity. For
protein abundance p(A) and its molecular activity kin(p(A),
+p(A) actsIn kin(p(A))+. 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.direct?
            true
          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/version1_0/relationships/acts_in.rb
bel_parser-1.1.6 lib/bel_parser/language/version1_0/relationships/acts_in.rb
bel_parser-1.1.5 lib/bel_parser/language/version1_0/relationships/acts_in.rb
bel_parser-1.1.4-java lib/bel_parser/language/version1_0/relationships/acts_in.rb
bel_parser-1.1.4 lib/bel_parser/language/version1_0/relationships/acts_in.rb
bel_parser-1.1.3-java lib/bel_parser/language/version1_0/relationships/acts_in.rb
bel_parser-1.1.3 lib/bel_parser/language/version1_0/relationships/acts_in.rb
bel_parser-1.1.2-java lib/bel_parser/language/version1_0/relationships/acts_in.rb
bel_parser-1.1.2 lib/bel_parser/language/version1_0/relationships/acts_in.rb
bel_parser-1.1.1-java lib/bel_parser/language/version1_0/relationships/acts_in.rb
bel_parser-1.1.1 lib/bel_parser/language/version1_0/relationships/acts_in.rb