summaryrefslogtreecommitdiff
path: root/test/lazar-fminer.rb
blob: 6c0ee4107b61958bdad4a3b03ea333027f7a72b2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
require_relative "setup.rb"

class LazarFminerTest < MiniTest::Test

  def test_lazar_fminer
    training_dataset = Dataset.from_csv_file File.join(DATA_DIR,"hamster_carcinogenicity.csv")
    feature_dataset = Algorithm::Fminer.bbrc(training_dataset)
    model = Model::Lazar.create training_dataset, feature_dataset
    #feature_dataset = OpenTox::Dataset.find model.feature_dataset_id
    assert_equal training_dataset.compounds.size, feature_dataset.compounds.size
    assert_equal 54, feature_dataset.features.size
    feature_dataset.data_entries.each do |e|
      assert_equal e.size, feature_dataset.features.size
    end
    assert_equal 'C-C-C=C', feature_dataset.features.first.smarts

    [ {
      :compound => OpenTox::Compound.from_inchi("InChI=1S/C6H6/c1-2-4-6-5-3-1/h1-6H"),
      :prediction => "false",
      :confidence => 0.25281385281385277
    },{
      :compound => OpenTox::Compound.from_smiles("c1ccccc1NN"),
      :prediction => "false",
      :confidence => 0.3639589577089577
    } ].each do |example|
      prediction_dataset = model.predict :compound => example[:compound]

      prediction = prediction_dataset.data_entries.first.first
      confidence = prediction_dataset.data_entries.first.last
      assert_equal example[:prediction], prediction
      assert_equal example[:confidence], confidence
    end

    # make a dataset prediction
    compound_dataset = OpenTox::Dataset.from_csv_file File.join(DATA_DIR,"EPAFHM.mini.csv")
    prediction = model.predict :dataset => compound_dataset
    assert_equal compound_dataset.compounds, prediction.compounds

    # cleanup
    [training_dataset,model,feature_dataset,compound_dataset].each{|o| o.delete}
  end
end