Sha256: 98488f2dfc75a62e3b42c05b0af8244139b51b2fb4a1e94076fb401729c5e8ae
Contents?: true
Size: 1.14 KB
Versions: 2
Compression:
Stored size: 1.14 KB
Contents
require_relative 'bioinform/version' require_relative 'bioinform/support' require_relative 'bioinform/parsers' require_relative 'bioinform/formatters' require_relative 'bioinform/data_models' require_relative 'bioinform/cli' module Bioinform class Error < StandardError end def self.get_pwm(data_model, matrix, background, pseudocount, effective_count) pm = Bioinform.const_get(data_model).new(matrix) pm.set_parameters(background: background) if pseudocount && ! pseudocount.blank? && [:PCM,:PPM].include?(data_model.to_sym) pm.set_parameters(pseudocount: pseudocount) end if effective_count && [:PPM].include?(data_model.to_sym) pm.set_parameters(effective_count: effective_count) end pm.to_pwm rescue => e raise "PWM creation failed (#{e})" end def self.get_pcm(data_model, matrix, effective_count) pm = Bioinform.const_get(data_model).new(matrix) if effective_count && [:PPM].include?(data_model.to_sym) pm.set_parameters(effective_count: effective_count) end pm.to_pcm end def self.get_ppm(data_model, matrix) Bioinform.const_get(data_model).new(matrix).to_ppm end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
bioinform-0.1.17 | lib/bioinform.rb |
bioinform-0.1.16 | lib/bioinform.rb |