summaryrefslogtreecommitdiff
path: root/lib/algorithm.rb
diff options
context:
space:
mode:
authorChristoph Helma <helma@in-silico.ch>2013-06-03 16:37:29 +0200
committerChristoph Helma <helma@in-silico.ch>2013-06-03 16:37:29 +0200
commitb0bd56e80eedde63c9e679acb7bf5b522e7b7988 (patch)
treee2e60964dba8c87930622b1566f1b0bb55c8acf4 /lib/algorithm.rb
parentf2ef6216ef785656d799c880f22013f6c7e900e7 (diff)
parent962773d59d94f8d16dae11b6290fdf30aaf09d7b (diff)
Merge branch 'development' of github.com:opentox/opentox-client into development
Diffstat (limited to 'lib/algorithm.rb')
-rw-r--r--lib/algorithm.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/algorithm.rb b/lib/algorithm.rb
index 530296a..8576681 100644
--- a/lib/algorithm.rb
+++ b/lib/algorithm.rb
@@ -1,11 +1,11 @@
module OpenTox
# Wrapper for OpenTox Algorithms
- class Algorithm
+ class Algorithm
# Execute algorithm with parameters, please consult the OpenTox API and the webservice documentation for acceptable parameters
# @param [optional,Hash] params Algorithm parameters
- # @param [optional,Boolean] set to true if method should wait for task result
+ # @param [optional,Boolean] wait set to true if method should wait for task result
# @return [String] URI of new resource (dataset, model, ...)
def run params=nil, wait=true
uri = RestClientWrapper.post @uri, params, { :content_type => "text/uri-list", :subjectid => @subjectid}