Sha256: ce0778c413ab6b3ce20697b1e089c24b5111401abd245a6e1c670810912cbc3c

Contents?: true

Size: 1.69 KB

Versions: 104

Compression:

Stored size: 1.69 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 = ' +A actsIn f(A)+ -  This relationship links an
          bundance term to the activity term for the same
          bundance. This relationship is direct because
          t is a _self_ relationship, the abundance acts
          n its own activity. For protein abundance p(A)
          nd its molecular activity kin(p(A), +p(A) actsIn
          in(p(A))+. This relationship is introduced by the
          EL Compiler and may not be used by statements in
          EL documents.'.freeze

          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

104 entries across 104 versions & 1 rubygems

Version Path
bel_parser-1.0.0.alpha.50-java lib/bel_parser/language/version1_0/relationships/acts_in.rb
bel_parser-1.0.0.alpha.50 lib/bel_parser/language/version1_0/relationships/acts_in.rb
bel_parser-1.0.0.alpha.49-java lib/bel_parser/language/version1_0/relationships/acts_in.rb
bel_parser-1.0.0.alpha.49 lib/bel_parser/language/version1_0/relationships/acts_in.rb
bel_parser-1.0.0.alpha.48-java lib/bel_parser/language/version1_0/relationships/acts_in.rb
bel_parser-1.0.0.alpha.48 lib/bel_parser/language/version1_0/relationships/acts_in.rb
bel_parser-1.0.0.alpha.47-java lib/bel_parser/language/version1_0/relationships/acts_in.rb
bel_parser-1.0.0.alpha.47 lib/bel_parser/language/version1_0/relationships/acts_in.rb
bel_parser-1.0.0.alpha.46-java lib/bel_parser/language/version1_0/relationships/acts_in.rb
bel_parser-1.0.0.alpha.46 lib/bel_parser/language/version1_0/relationships/acts_in.rb
bel_parser-1.0.0.alpha.45-java lib/bel_parser/language/version1_0/relationships/acts_in.rb
bel_parser-1.0.0.alpha.45 lib/bel_parser/language/version1_0/relationships/acts_in.rb
bel_parser-1.0.0.alpha.44-java lib/bel_parser/language/version1_0/relationships/acts_in.rb
bel_parser-1.0.0.alpha.44 lib/bel_parser/language/version1_0/relationships/acts_in.rb
bel_parser-1.0.0.alpha.43-java lib/bel_parser/language/version1_0/relationships/acts_in.rb
bel_parser-1.0.0.alpha.43 lib/bel_parser/language/version1_0/relationships/acts_in.rb
bel_parser-1.0.0.alpha.42-java lib/bel_parser/language/version1_0/relationships/acts_in.rb
bel_parser-1.0.0.alpha.42 lib/bel_parser/language/version1_0/relationships/acts_in.rb
bel_parser-1.0.0.alpha.41-java lib/bel_parser/language/version1_0/relationships/acts_in.rb
bel_parser-1.0.0.alpha.41 lib/bel_parser/language/version1_0/relationships/acts_in.rb