summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Maunz <andreas@maunz.de>2012-02-15 15:04:40 +0100
committerAndreas Maunz <andreas@maunz.de>2012-02-15 15:04:40 +0100
commit94f4526bcb73ec8586559ae8b476b5a73a176882 (patch)
tree23acce251b89e9e06c1bb9843efeeb9d44c7a221
parentdf96ba4183b341393ac00ee5e444c99411d8123d (diff)
Fixed parameter name in metadata (minfreq)
-rw-r--r--fminer.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/fminer.rb b/fminer.rb
index a5ea61d..10823fd 100644
--- a/fminer.rb
+++ b/fminer.rb
@@ -35,7 +35,7 @@ get "/fminer/bbrc/?" do
OT.parameters => [
{ DC.description => "Dataset URI", OT.paramScope => "mandatory", DC.title => "dataset_uri" },
{ DC.description => "Feature URI for dependent variable", OT.paramScope => "mandatory", DC.title => "prediction_feature" },
- { DC.description => "Minimum frequency", OT.paramScope => "optional", DC.title => "minfreq" },
+ { DC.description => "Minimum frequency", OT.paramScope => "optional", DC.title => "min_frequency" },
{ DC.description => "Feature type, can be 'paths' or 'trees'", OT.paramScope => "optional", DC.title => "feature_type" },
{ DC.description => "BBRC classes, pass 'false' to switch off mining for BBRC representatives.", OT.paramScope => "optional", DC.title => "backbone" },
{ DC.description => "Significance threshold (between 0 and 1)", OT.paramScope => "optional", DC.title => "min_chisq_significance" },
@@ -67,7 +67,7 @@ get "/fminer/last/?" do
OT.parameters => [
{ DC.description => "Dataset URI", OT.paramScope => "mandatory", DC.title => "dataset_uri" },
{ DC.description => "Feature URI for dependent variable", OT.paramScope => "mandatory", DC.title => "prediction_feature" },
- { DC.description => "Minimum frequency", OT.paramScope => "optional", DC.title => "minfreq" },
+ { DC.description => "Minimum frequency", OT.paramScope => "optional", DC.title => "min_frequency" },
{ DC.description => "Feature type, can be 'paths' or 'trees'", OT.paramScope => "optional", DC.title => "feature_type" },
{ DC.description => "Maximum number of hops", OT.paramScope => "optional", DC.title => "hops" },
]