summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgebele <gebele@in-silico.ch>2014-02-18 15:53:17 +0100
committergebele <gebele@in-silico.ch>2014-02-18 15:53:17 +0100
commit235fc0dae31f66eda346497e81f09f330ac57bdc (patch)
tree5bccbb8f5b6f5b1639da6a7f5b61680c8324b185
parentca671cea926847048afe2c73d1cb48c373345efc (diff)
fixed typo
-rw-r--r--application.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/application.rb b/application.rb
index f742442..4cd247f 100644
--- a/application.rb
+++ b/application.rb
@@ -168,12 +168,12 @@ class Application < Sinatra::Base
get '/cid/:cid/prediction/assays/:outcome' do
@assays = predicted_assays(params[:cid], params[:outcome]) - predicted_targets(params[:cid], params[:outcome])
- @assays and !@assays.empty? ? haml(:predicted_assays, :layout => false) : "<p><em>Insuffucient PubChem data for read across predictions.</em></p>"
+ @assays and !@assays.empty? ? haml(:predicted_assays, :layout => false) : "<p><em>Insufficient PubChem data for read across predictions.</em></p>"
end
get '/cid/:cid/prediction/targets/:outcome' do
@assays = predicted_targets params[:cid], params[:outcome]
- @assays and !@assays.empty? ? haml(:predicted_targets, :layout => false) : "<p><em>Insuffucient PubChem data for read across predictions.</em></p>"
+ @assays and !@assays.empty? ? haml(:predicted_targets, :layout => false) : "<p><em>Insufficient PubChem data for read across predictions.</em></p>"
end
get '/cid/:cid/neighbors/?' do