summaryrefslogtreecommitdiff
path: root/lib/feature.rb
diff options
context:
space:
mode:
authorChristoph Helma <helma@in-silico.ch>2015-08-27 20:28:25 +0200
committerChristoph Helma <helma@in-silico.ch>2015-08-27 20:28:25 +0200
commit66c34e4682965272060a121b6e362af67ed4be5f (patch)
tree61350c4ada8cbb6ca724f3af221f229ffcd70560 /lib/feature.rb
parentd542e9fe92567c54423f39904111bd5293236416 (diff)
Initial GUI for Nestec models
Diffstat (limited to 'lib/feature.rb')
-rw-r--r--lib/feature.rb5
1 files changed, 0 insertions, 5 deletions
diff --git a/lib/feature.rb b/lib/feature.rb
index 9521597..6fc2c06 100644
--- a/lib/feature.rb
+++ b/lib/feature.rb
@@ -2,7 +2,6 @@ module OpenTox
# Basic feature class
class Feature
- field :name, type: String
field :nominal, type: Boolean
field :numeric, type: Boolean
field :measured, type: Boolean
@@ -85,14 +84,10 @@ module OpenTox
# Feature for categorical bioassay results
class NominalBioAssay < NominalFeature
- # TODO: needed? move to dataset?
- field :description, type: String
end
# Feature for quantitative bioassay results
class NumericBioAssay < NumericFeature
- # TODO: needed? move to dataset?
- field :description, type: String
end
end