summaryrefslogtreecommitdiff
path: root/lib/feature.rb
blob: a308a559b4a322df5e78c2dc5b7fbb37276b945b (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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
module OpenTox

  # Basic feature class
  class Feature
    field :nominal, type: Boolean
    field :numeric, type: Boolean
    field :measured, type: Boolean
  end

  # Feature for categorical variables
  class NominalFeature < Feature
    # TODO check if accept_values are still needed 
    field :accept_values, type: Array
    def initialize params
      super params
      nominal = true
    end
  end

  # Feature for quantitative variables
  class NumericFeature < Feature
    def initialize params
      super params
      numeric = true
    end
  end

  # Feature for SMARTS fragments
  class Smarts < NominalFeature
    field :smarts, type: String 
    index "smarts" => 1
    def self.from_smarts smarts
      self.find_or_create_by :smarts => smarts
    end
  end

  # Feature for supervised fragments from Fminer algorithm
  class FminerSmarts < Smarts
    field :p_value, type: Float
    # TODO check if effect is used
    field :effect, type: String
    field :dataset_id 
  end

  # Feature for physico-chemical descriptors
  class PhysChemDescriptor < NumericFeature
    field :algorithm, type: String, default: "OpenTox::Algorithm::Descriptor.physchem"
    field :parameters, type: Hash
    field :creator, type: String
  end

  # Feature for categorical bioassay results
  class NominalBioAssay < NominalFeature
  end

  # Feature for quantitative bioassay results
  class NumericBioAssay < NumericFeature
  end

end