summaryrefslogtreecommitdiff
path: root/lib/feature.rb
diff options
context:
space:
mode:
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