Sha256: 379841e547ab56f4dc6bc460676b46cf9207c4d4feb2da779480081e669fdb73

Contents?: true

Size: 1.21 KB

Versions: 6

Compression:

Stored size: 1.21 KB

Contents

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

module BELParser
  module Language
    module Version2_0
      module Relationships
        # HasModification:  +p(A) hasModification p(A, pmod(P, S, 473))+ -  This relationship links abundance terms modified by the +pmod()+ function to the unmodified abundance term. This is a direct relationship because it is a _self_ relationship. This relationship is introduced by the BEL Compiler and may not be used by statements in BEL documents.
        class HasModification
          extend Relationship

          SHORT       = :hasModification
          LONG        = :hasModification
          DESCRIPTION = ' +p(A) hasModification p(A, pmod(P, S, 473))+ -  This relationship links abundance terms modified by the +pmod()+ function to the unmodified abundance term. This is a direct relationship because it is a _self_ relationship. This relationship is introduced by the BEL Compiler and may not be used by statements in BEL documents.'.freeze

          def self.short
            SHORT
          end

          def self.long
            LONG
          end

          def self.description
            DESCRIPTION
          end
        end
      end
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
bel_parser-1.0.0.alpha.7 lib/bel_parser/language/version2_0/relationships/has_modification.rb
bel_parser-1.0.0.alpha.6 lib/bel_parser/language/version2_0/relationships/has_modification.rb
bel_parser-1.0.0.alpha.5 lib/bel_parser/language/version2_0/relationships/has_modification.rb
bel_parser-1.0.0.alpha.4 lib/bel_parser/language/version2_0/relationships/has_modification.rb
bel_parser-1.0.0.alpha.3 lib/bel_parser/language/version2_0/relationships/has_modification.rb
bel_parser-1.0.0.alpha.2 lib/bel_parser/language/version2_0/relationships/has_modification.rb