summaryrefslogtreecommitdiff
path: root/lib/nanoparticle.rb
blob: 3783ececbfe7a5639df91f2cb38c956f3a0e89c3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
module OpenTox

  class Nanoparticle
    include OpenTox

    field :particle_id, type: String
    field :core, type: String
    field :coatings, type: Array

    #field :physchem_descriptors, type: Hash, default: {}
    #field :toxicities, type: Hash, default: {}
    field :features, type: Hash, default: {}

  end
end