summaryrefslogtreecommitdiff
path: root/lib/feature.rb
diff options
context:
space:
mode:
authorChristoph Helma <helma@in-silico.ch>2016-02-28 12:43:38 +0100
committerChristoph Helma <helma@in-silico.ch>2016-02-28 12:43:38 +0100
commit8c973e16028cb95c978bb08cf79369a5c3520c31 (patch)
tree96909cb936fbbf2c3bc43776278953394b93b94f /lib/feature.rb
parentb90720cc26d789a96fa6f7a054fe06fc8b4ef33d (diff)
physchem feature class
Diffstat (limited to 'lib/feature.rb')
-rw-r--r--lib/feature.rb8
1 files changed, 1 insertions, 7 deletions
diff --git a/lib/feature.rb b/lib/feature.rb
index a308a55..21572ca 100644
--- a/lib/feature.rb
+++ b/lib/feature.rb
@@ -5,6 +5,7 @@ module OpenTox
field :nominal, type: Boolean
field :numeric, type: Boolean
field :measured, type: Boolean
+ field :calculated, type: Boolean
end
# Feature for categorical variables
@@ -42,13 +43,6 @@ module OpenTox
field :dataset_id
end
- # Feature for physico-chemical descriptors
- class PhysChemDescriptor < NumericFeature
- field :algorithm, type: String, default: "OpenTox::Algorithm::Descriptor.physchem"
- field :parameters, type: Hash
- field :creator, type: String
- end
-
# Feature for categorical bioassay results
class NominalBioAssay < NominalFeature
end