summaryrefslogtreecommitdiff
path: root/views/compound.xml.builder
blob: b4f6cfa4c5b472d446ae1303dfbc6355c501a96c (plain)
1
2
3
4
5
6
7
8
9
10
11
xml.instruct!
xml.dataset do
	@compounds.each do |compound,features|
		xml.compound do
			xml.uri compound
			features.each do |f|
				xml.feature_uri f
			end
		end
	end
end