From 5b53700d63ee55ed2e47331fa30723e873f204eb Mon Sep 17 00:00:00 2001 From: Andreas Maunz Date: Tue, 21 Feb 2012 16:35:07 +0100 Subject: Added description of pcdesc --- application.rb | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/application.rb b/application.rb index 735a4d1..122361d 100644 --- a/application.rb +++ b/application.rb @@ -357,6 +357,32 @@ end # # @param [String] pc_type # @return [text/uri-list] Task ID +get '/:id/pcdesc' do +algorithm = OpenTox::Algorithm::Generic.new(url_for('/dataset/id/pcdesc',:full)) + algorithm.metadata = { + DC.title => 'Physico-chemical (PC) descriptor calculation', + DC.creator => "andreas@maunz.de, vorgrimmlerdavid@gmx.de", + RDF.type => [OT.Algorithm,OTA.PatternMiningSupervised], + OT.parameters => [ + { DC.description => "Dataset URI", OT.paramScope => "mandatory", DC.title => "dataset_uri" }, + { DC.description => "PC type", OT.paramScope => "mandatory", DC.title => "pc_type" }, + ] + } + case request.env['HTTP_ACCEPT'] + when /text\/html/ + content_type "text/html" + OpenTox.text_to_html algorithm.to_yaml + when /application\/x-yaml/ + content_type "application/x-yaml" + algorithm.to_yaml + else + response['Content-Type'] = 'application/rdf+xml' + algorithm.to_rdfxml + end +end + + + post '/:id/pcdesc' do response['Content-Type'] = 'text/uri-list' raise "No PC type given" unless params["pc_type"] -- cgit v1.2.3