summaryrefslogtreecommitdiff
path: root/lib/dataset.rb
diff options
context:
space:
mode:
authorgebele <gebele@in-silico.ch>2013-05-07 17:06:49 +0200
committergebele <gebele@in-silico.ch>2013-05-07 17:06:49 +0200
commit7a4e660cc5092cd4973163eab576ece81d7706d4 (patch)
treed9fbb6e80c3bced801b8fea8f51e7530bc6251e6 /lib/dataset.rb
parentae55440e99529c18367f93e3f6e6b40816767f44 (diff)
parent5430c1f53f544d61a24236ed5c78c5972f102405 (diff)
Merge branch 'development' of github.com:opentox/opentox-client into development
Diffstat (limited to 'lib/dataset.rb')
-rw-r--r--lib/dataset.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/dataset.rb b/lib/dataset.rb
index ec0abdb..f261641 100644
--- a/lib/dataset.rb
+++ b/lib/dataset.rb
@@ -178,7 +178,7 @@ module OpenTox
query = RDF::Query.new({ :uri => { RDF.type => RDF::OT.Compound } })
@compounds = query.execute(@rdf).collect { |solution| OpenTox::Compound.new solution.uri }
query = RDF::Query.new({ :uri => { RDF.type => RDF::OT.Feature } })
- @features = query.execute(@rdf).collect { |solution| OpenTox::Feature.new solution.uri }
+ @features = query.execute(@rdf).collect { |solution| OpenTox::Feature.new solution.uri, @subjectid }
@compounds.each_with_index do |c,i|
@features.each_with_index do |f,j|
end