summaryrefslogtreecommitdiff
path: root/application.rb
blob: 7a18fd510f0639f7daec15a881a8eb01abfd80a7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
['rubygems', "haml", "sass", "rack-flash"].each do |lib|
	require lib
end
gem "opentox-ruby-api-wrapper", "= 1.6.5"
require 'opentox-ruby-api-wrapper'
gem 'sinatra-static-assets'
require 'sinatra/static_assets'
require 'ftools'
require File.join(File.dirname(__FILE__),'model.rb')
require File.join(File.dirname(__FILE__),'helper.rb')
require File.join(File.dirname(__FILE__),'parser.rb')

use Rack::Flash
set :sessions, true

get '/?' do
	redirect url_for('/create')
end

get '/models/?' do
	@models = ToxCreateModel.all(:order => [ :created_at.desc ])
	@models.each { |model| model.process }
	haml :models
end

delete '/model/:id/?' do
	model = ToxCreateModel.get(params[:id])
	begin
		RestClient.delete model.uri if model.uri
		RestClient.delete model.task_uri if model.task_uri
    model.destroy!
    flash[:notice] = "#{model.name} model deleted."
	rescue
	  flash[:notice] = "#{model.name} model delete error."
	end
	redirect url_for('/models')
end

get '/model/:id/status/?' do
  response['Content-Type'] = 'text/plain'
	model = ToxCreateModel.get(params[:id])
	begin
		haml :model_status, :locals=>{:model=>model}, :layout => false
	rescue
    return "unavailable"
	end
end

get '/model/:id/:view/?' do
  response['Content-Type'] = 'text/plain'
	model = ToxCreateModel.get(params[:id])

  begin
    model.process
    model.save
    case params[:view]
      when "model"
		    haml :model, :locals=>{:model=>model}, :layout => false
		  when /validation/
        haml :validation, :locals=>{:model=>model}, :layout => false
		  else
				return "unable to render model: id #{params[:id]}, view #{params[:view]}"
		end
	rescue
    return "unable to render model: id #{params[:id]}, view #{params[:view]}"
	end
end

get '/predict/?' do 
	@models = ToxCreateModel.all(:order => [ :created_at.desc ])
	@models = @models.collect{|m| m if m.status == 'Completed'}.compact
	haml :predict
end

get '/create' do
	haml :create
end

get '/help' do
	haml :help
end

get "/confidence" do
	haml :confidence
end

post '/upload' do # create a new model

	if params[:endpoint] == ''
		flash[:notice] = "Please enter an endpoint name."
		redirect url_for('/create')
	end
	unless params[:endpoint] and params[:file] and params[:file][:tempfile]
		flash[:notice] = "Please enter an endpoint name and upload a Excel or CSV file."
		redirect url_for('/create')
	end

	@model = ToxCreateModel.new
	@model.name = params[:endpoint]
	feature_uri = url_for("/feature#"+URI.encode(params[:endpoint]), :full)
	parser = Parser.new params[:file], feature_uri

	unless parser.format_errors.empty?
		flash[:notice] = "Incorrect file format. Please follow the instructions for #{link_to "Excel", "/excel_format"} or #{link_to "CSV", "/csv_format"} formats."
	end

	if parser.dataset.compounds.empty?
		flash[:notice] = "Dataset #{params[:file][:filename]} is empty."
		redirect url_for('/create')
	end

	begin
		@model.task_uri = OpenTox::Algorithm::Lazar.create_model(:dataset_uri => parser.dataset_uri, :prediction_feature => feature_uri)
	rescue
		flash[:notice] = "Model creation failed. Please check if the input file is in a valid #{link_to "Excel", "/excel_format"} or #{link_to "CSV", "/csv_format"} format."
		redirect url_for('/create')
	end

  begin
    validation_task_uri = OpenTox::Validation.crossvalidation(
      :algorithm_uri => OpenTox::Algorithm::Lazar.uri,
      :dataset_uri => parser.dataset_uri,
      :prediction_feature => feature_uri,
      :algorithm_params => "feature_generation_uri=#{OpenTox::Algorithm::Fminer.uri}"
    ).uri
    LOGGER.debug "Validation task: " + validation_task_uri
    @model.validation_task_uri = validation_task_uri
	rescue
		flash[:notice] = "Model validation failed."
  end

=begin
	if parser.nr_compounds < 10
		flash[:notice] = "Too few compounds to create a prediction model. Did you provide compounds in SMILES format and classification activities as described in the #{link_to "instructions", "/excel_format"}? As a rule of thumb you will need at least 100 training compounds for nongeneric datasets. A lower number could be sufficient for congeneric datasets."
		redirect url_for('/create')
	end
=end

	@model.nr_compounds = parser.nr_compounds
	@model.warnings = ''

	@model.warnings += "<p>Incorrect Smiles structures (ignored):</p>" + parser.smiles_errors.join("<br/>") unless parser.smiles_errors.empty?
	@model.warnings += "<p>Irregular activities (ignored):</p>" + parser.activity_errors.join("<br/>") unless parser.activity_errors.empty?
	duplicate_warnings = ''
	parser.duplicates.each {|inchi,lines| duplicate_warnings += "<p>#{lines.join('<br/>')}</p>" if lines.size > 1 }
	@model.warnings += "<p>Duplicated structures (all structures/activities used for model building, please  make sure, that the results were obtained from <em>independent</em> experiments):</p>" + duplicate_warnings unless duplicate_warnings.empty?
	@model.save

	flash[:notice] = "Model creation and validation started - this may last up to several hours depending on the number and size of the training compounds."
	redirect url_for('/models')

	# TODO: check for empty model
end

post '/predict/?' do # post chemical name to model
	@identifier = params[:identifier]
	unless params[:selection] and params[:identifier] != ''
		flash[:notice] = "Please enter a compound identifier and select an endpoint from the list."
		redirect url_for('/predict')
	end
	begin
		@compound = OpenTox::Compound.new(:name => params[:identifier])
	rescue
		flash[:notice] = "Could not find a structure for '#{@identifier}'. Please try again."
		redirect url_for('/predict')
	end
	@predictions = []
	params[:selection].keys.each do |id|
		model = ToxCreateModel.get(id.to_i)
		model.process unless model.uri
		prediction = nil
		confidence = nil
		title = nil
		db_activities = []
		#LOGGER.debug "curl -X POST -d 'compound_uri=#{@compound.uri}' -H 'Accept:application/x-yaml' #{model.uri}"
		prediction = YAML.load(`curl -X POST -d 'compound_uri=#{@compound.uri}' -H 'Accept:application/x-yaml' #{model.uri}`)
    #prediction = YAML.load(OpenTox::Model::Lazar.predict(params[:compound_uri],params[:model_uri]))
		source = prediction.creator
		if prediction.data[@compound.uri]
			if source.to_s.match(/model/) # real prediction
				prediction = prediction.data[@compound.uri].first.values.first
				#LOGGER.debug prediction[File.join(@@config[:services]["opentox-model"],"lazar#classification")]
				#LOGGER.debug prediction[File.join(@@config[:services]["opentox-model"],"lazar#confidence")]
				if !prediction[File.join(@@config[:services]["opentox-model"],"lazar#classification")].nil?
					@predictions << {
            :title => model.name,
            :model_uri => model.uri,
            :prediction => prediction[File.join(@@config[:services]["opentox-model"],"lazar#classification")],
            :confidence => prediction[File.join(@@config[:services]["opentox-model"],"lazar#confidence")]
            }
				elsif !prediction[File.join(@@config[:services]["opentox-model"],"lazar#regression")].nil?
					@predictions << {
            :title => model.name,
            :model_uri => model.uri,
            :prediction => prediction[File.join(@@config[:services]["opentox-model"],"lazar#regression")],
            :confidence => prediction[File.join(@@config[:services]["opentox-model"],"lazar#confidence")]
            }
				end
			else # database value
				prediction = prediction.data[@compound.uri].first.values
				@predictions << {:title => model.name, :measured_activities => prediction}
			end
		else
			@predictions << {:title => model.name, :prediction => "not available (not enough similar compounds in the training dataset)"}
		end
	end
	LOGGER.debug @predictions.inspect

	haml :prediction
end

post "/lazar/?" do # get detailed prediction
  @page = 0
  @page = params[:page].to_i if params[:page]
  @model_uri = params[:model_uri]
  @prediction = YAML.load(OpenTox::Model::Lazar.predict(params[:compound_uri],params[:model_uri]))
  @compound = OpenTox::Compound.new(:uri => params[:compound_uri])
  @title = @prediction.title
  if @prediction.data[@compound.uri]
    if @prediction.creator.to_s.match(/model/) # real prediction
      p = @prediction.data[@compound.uri].first.values.first
      if !p[File.join(@@config[:services]["opentox-model"],"lazar#classification")].nil?
        feature = File.join(@@config[:services]["opentox-model"],"lazar#classification")
      elsif !p[File.join(@@config[:services]["opentox-model"],"lazar#regression")].nil?
        feature = File.join(@@config[:services]["opentox-model"],"lazar#regression")
      end
      @activity = p[feature]
      @confidence = p[File.join(@@config[:services]["opentox-model"],"lazar#confidence")]
      @neighbors = p[File.join(@@config[:services]["opentox-model"],"lazar#neighbors")]
      @features = p[File.join(@@config[:services]["opentox-model"],"lazar#features")]
    else # database value
      @measured_activities = @prediction.data[@compound.uri].first.values
    end
  else
    @activity = "not available (no similar compounds in the training dataset)"
  end
  haml :lazar
end

# proxy to get data from compound service
# (jQuery load does not work with external URIs)
get %r{/compound/(.*)} do |inchi|
  OpenTox::Compound.new(:inchi => inchi).names.gsub(/\n/,', ')
end

delete '/?' do
  ToxCreateModel.auto_migrate!
	response['Content-Type'] = 'text/plain'
	"All Models deleted."
end

# SASS stylesheet
get '/stylesheets/style.css' do
  headers 'Content-Type' => 'text/css; charset=utf-8'
  sass :style
end