Sha256: d70991dbc88cb8c79565e886b9928d407a61fc0c002520c9ab68147106d2fdd2

Contents?: true

Size: 511 Bytes

Versions: 84

Compression:

Stored size: 511 Bytes

Contents

require_relative '../../version2_0'
require_relative 'abundance'

module BELParser
  module Language
    module Version2_0
      module ValueEncodings
        # RNAAbundance value encoding.
        class RNAAbundance < Abundance
          # Return the {Symbol} value.
          #
          # @note This method should be overridden in subclasses.
          def self.to_sym
            raise_not_implemented(__method__) if self != RNAAbundance
            :R
          end
        end
      end
    end
  end
end

Version data entries

84 entries across 84 versions & 1 rubygems

Version Path
bel_parser-1.0.0.alpha.16 lib/bel_parser/language/version2_0/value_encodings/rna_abundance.rb
bel_parser-1.0.0.alpha.15 lib/bel_parser/language/version2_0/value_encodings/rna_abundance.rb
bel_parser-1.0.0.alpha.14 lib/bel_parser/language/version2_0/value_encodings/rna_abundance.rb
bel_parser-1.0.0.alpha.13 lib/bel_parser/language/version2_0/value_encodings/rna_abundance.rb