summaryrefslogtreecommitdiff
path: root/lib/substance.rb
blob: 82ca65da1b4ce023ff89992a7d772be119a84e7b (plain)
1
2
3
4
5
6
7
8
9
10
module OpenTox

  class Substance
    field :physchem_descriptors, type: Hash, default: {}
    field :toxicities, type: Hash, default: {}
    field :dataset_ids, type: Array, default: []
  end

end