summaryrefslogtreecommitdiff
path: root/lib/nanoparticle.rb
diff options
context:
space:
mode:
authorChristoph Helma <helma@in-silico.ch>2016-04-07 17:39:14 +0200
committerChristoph Helma <helma@in-silico.ch>2016-04-07 17:39:14 +0200
commit063acd4dc63e9287287cc1ff78fff2064ff74e4f (patch)
tree4c3c1a90bed69eead86ccae614105c67b5e6f507 /lib/nanoparticle.rb
parent83072cc3c5251a3eb4496fa68b413540ea9409fd (diff)
initial ambit import
Diffstat (limited to 'lib/nanoparticle.rb')
-rw-r--r--lib/nanoparticle.rb17
1 files changed, 17 insertions, 0 deletions
diff --git a/lib/nanoparticle.rb b/lib/nanoparticle.rb
new file mode 100644
index 0000000..3783ece
--- /dev/null
+++ b/lib/nanoparticle.rb
@@ -0,0 +1,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
+
+