Sha256: 826800f5c9e2a89502db71284c907c3c4dd32c5d5ff9f02cbd854e6e99ac91f1

Contents?: true

Size: 1.14 KB

Versions: 6

Compression:

Stored size: 1.14 KB

Contents

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

module BELParser
  module Language
    module Version1_0
      module Relationships
        # HasVariant:  +p(A) hasVariant p(A, sub(G, 12, V))+ -  This relationship links abundance terms modified by the +substitution()+, +fusion()+, or +truncation()+ functions to the unmodified abundance term. This relationship is introduced by the BEL Compiler and does not need to be used by statements in BEL documents.
        class HasVariant
          extend Relationship

          SHORT       = :hasVariant
          LONG        = :hasVariant
          DESCRIPTION = ' +p(A) hasVariant p(A, sub(G, 12, V))+ -  This relationship links abundance terms modified by the +substitution()+, +fusion()+, or +truncation()+ functions to the unmodified abundance term. This relationship is introduced by the BEL Compiler and does not need to 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/version1_0/relationships/has_variant.rb
bel_parser-1.0.0.alpha.6 lib/bel_parser/language/version1_0/relationships/has_variant.rb
bel_parser-1.0.0.alpha.5 lib/bel_parser/language/version1_0/relationships/has_variant.rb
bel_parser-1.0.0.alpha.4 lib/bel_parser/language/version1_0/relationships/has_variant.rb
bel_parser-1.0.0.alpha.3 lib/bel_parser/language/version1_0/relationships/has_variant.rb
bel_parser-1.0.0.alpha.2 lib/bel_parser/language/version1_0/relationships/has_variant.rb