Sha256: ca8e3c7f0b42c3752a83bb248ca1d1f5062c7deefd0e16c18787f8066a721421
Contents?: true
Size: 1.12 KB
Versions: 3
Compression:
Stored size: 1.12 KB
Contents
require File.expand_path(File.dirname(__FILE__) + '/../../test_helper') require 'rbbt/statistics/hypergeometric' require 'test/unit' class TestHypergeometric < Test::Unit::TestCase def test_hypergeometric assert Hypergeometric.hypergeometric(100, 20, 15,13) < 0.05 end def test_annotation_counts content =<<-EOF #Id ValueA ValueB OtherID row1 a|aa|aaa b Id1|Id2 row2 A B Id3 row3 a C Id4 EOF TmpFile.with_file(content) do |filename| tsv = TSV.open(filename, :sep => /\s+/) counts = tsv.annotation_counts assert_equal 2, counts['a'] end end def test_enrichment content =<<-EOF #Id ValueA ValueB OtherID row1 a|aa|aaa b Id1|Id2 row2 A B Id3 row3 a C Id4 row4 a B Id3 row5 a B Id3 row6 A B Id3 row7 A B Id3 EOF TmpFile.with_file(content) do |filename| tsv = TSV.open(filename, :sep => /\s+/) assert_equal %w(a), tsv.enrichment(%w(row1 row3 row4 row5), "ValueA", :fdr => false).collect{|annot,pvalue| pvalue < 0.05 ? annot : nil}.compact end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
rbbt-dm-0.0.4 | test/rbbt/statistics/test_hypergeometric.rb |
rbbt-dm-0.0.3 | test/rbbt/statistics/test_hypergeometric.rb |
rbbt-dm-0.0.2 | test/rbbt/statistics/test_hypergeometric.rb |