summaryrefslogtreecommitdiff
path: root/lib/algorithm.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/algorithm.rb')
-rw-r--r--lib/algorithm.rb28
1 files changed, 0 insertions, 28 deletions
diff --git a/lib/algorithm.rb b/lib/algorithm.rb
index 11c619d..8083db2 100644
--- a/lib/algorithm.rb
+++ b/lib/algorithm.rb
@@ -4,18 +4,6 @@ module OpenTox
module Algorithm
class Fminer
- include Owl
-
- def initialize
- super
- self.uri = File.join(@@config[:services]["opentox-algorithm"],'fminer')
- self.title = "fminer"
- self.source = "http://github.com/amaunz/libfminer"
- self.parameters = {
- "Dataset URI" => { :scope => "mandatory", :value => "dataset_uri" },
- "Feature URI for dependent variable" => { :scope => "mandatory", :value => "feature_uri" }
- }
- end
def self.create_feature_dataset(params)
LOGGER.debug File.basename(__FILE__) + ": creating feature dataset"
@@ -29,22 +17,6 @@ module OpenTox
end
class Lazar
- include Owl
-
- def initialize
- super
- self.uri = File.join(@@config[:services]["opentox-algorithm"],'lazar')
- self.title = "lazar"
- self.source = "http://github.com/helma/opentox-algorithm"
- self.parameters = {
- "Dataset URI" =>
- { :scope => "mandatory", :value => "dataset_uri" },
- "Feature URI for dependent variable" =>
- { :scope => "mandatory", :value => "feature_uri" },
- "Feature generation URI" =>
- { :scope => "mandatory", :value => "feature_generation_uri" }
- }
- end
def self.create_model(params)
LOGGER.debug params