summaryrefslogtreecommitdiff
path: root/lib/experiment.rb
diff options
context:
space:
mode:
authorChristoph Helma <helma@in-silico.ch>2015-09-17 14:56:25 +0200
committerChristoph Helma <helma@in-silico.ch>2015-09-17 14:56:25 +0200
commit6ac119c32cef094d4f1c2fb5c2daa4e274401f70 (patch)
tree9028a2922b68a5e2175687fe48caa1b1119e5939 /lib/experiment.rb
parent2fdecbed76c4db8dfe3f10f825fed9772e653197 (diff)
neighbor calculation moved to Compound class
Diffstat (limited to 'lib/experiment.rb')
-rw-r--r--lib/experiment.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/experiment.rb b/lib/experiment.rb
index 7849337..985a491 100644
--- a/lib/experiment.rb
+++ b/lib/experiment.rb
@@ -2,7 +2,7 @@ module OpenTox
class Experiment
field :dataset_ids, type: Array
- field :model_settings, type: Array
+ field :model_settings, type: Array, default: []
field :results, type: Hash, default: {}
end
@@ -26,7 +26,7 @@ module OpenTox
def self.create params
experiment = self.new
$logge.debug "Experiment started ..."
- experiment.run params
+ #experiment.run params
experiment
end