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

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

end