Mercurial > repos > bgruening > sklearn_numeric_clustering
comparison main_macros.xml @ 1:d938b80a954f draft
planemo upload for repository https://github.com/bgruening/galaxytools/tools/sklearn commit 620159e95d2fae693b5f25d591528be159130f25
author | bgruening |
---|---|
date | Wed, 04 May 2016 13:09:40 -0400 |
parents | dac8a9712939 |
children | fe2d62fbf47b |
comparison
equal
deleted
inserted
replaced
0:dac8a9712939 | 1:d938b80a954f |
---|---|
124 <option value="k-means++">k-means++</option> | 124 <option value="k-means++">k-means++</option> |
125 <option value="random">random</option> | 125 <option value="random">random</option> |
126 </param> | 126 </param> |
127 </xml> | 127 </xml> |
128 | 128 |
129 <xml name="multiple_sparse"> | 129 <xml name="gamma" token_default_value="1.0" token_label="Scaling parameter" token_help_text=" "> |
130 <repeat name="sparse_inputs" min="1" max="10" title="Inputs"> | 130 <param argument="gamma" type="float" optional="true" value="@DEFAULT_VALUE@" label="@LABEL@" help="@HELP_TEXT@"/> |
131 <param name="input" type="data" format="txt" label="Sparse matrix file (.mtx, .txt)" help="Specify a sparse matrix file in .txt format."/> | 131 </xml> |
132 | |
133 <xml name="degree" token_default_value="3" token_label="Degree of the polynomial" token_help_text=" "> | |
134 <param argument="degree" type="integer" optional="true" value="@DEFAULT_VALUE@" label="@LABEL@" help="@HELP_TEXT@"/> | |
135 </xml> | |
136 | |
137 <xml name="coef0" token_default_value="1" token_label="Zero coefficient" token_help_text=" "> | |
138 <param argument="coef0" type="integer" optional="true" value="@DEFAULT_VALUE@" label="@LABEL@" help="@HELP_TEXT@"/> | |
139 </xml> | |
140 | |
141 <xml name="multiple_input" token_name="input_files" token_max_num="10" token_format="txt" token_label="Sparse matrix file (.mtx, .txt)" token_help_text="Specify a sparse matrix file in .txt format."> | |
142 <repeat name="@NAME@" min="1" max="@MAX_NUM@" title="Select input file(s):"> | |
143 <param name="input" type="data" format="@FORMAT@" label="@LABEL@" help="@HELP_TEXT@"/> | |
132 </repeat> | 144 </repeat> |
133 </xml> | 145 </xml> |
134 | 146 |
135 <xml name="eden_citation"> | 147 <xml name="eden_citation"> |
136 <citations> | 148 <citations> |
137 <citation type="bibtex"> | 149 <citation type="bibtex"> |
138 @misc{fabrizio_costa_2015_15094, | 150 @misc{fabrizio_costa_2015_15094, |
336 <when value="MiniBatchKMeans"> | 348 <when value="MiniBatchKMeans"> |
337 <expand macro="minibatch_kmeans_advanced_options"/> | 349 <expand macro="minibatch_kmeans_advanced_options"/> |
338 </when> | 350 </when> |
339 </conditional> | 351 </conditional> |
340 </xml> | 352 </xml> |
353 | |
354 <xml name="distance_metrics"> | |
355 <param argument="metric" type="select" label="Distance metric" help=" "> | |
356 <option value="euclidean" selected="true">euclidean</option> | |
357 <option value="cityblock">cityblock</option> | |
358 <option value="cosine">cosine</option> | |
359 <option value="l1">l1</option> | |
360 <option value="l2">l2</option> | |
361 <option value="manhattan">manhattan</option> | |
362 <yield/> | |
363 </param> | |
364 </xml> | |
365 | |
366 <xml name="distance_nonsparse_metrics"> | |
367 <option value="braycurtis">braycurtis</option> | |
368 <option value="canberra">canberra</option> | |
369 <option value="chebyshev">chebyshev</option> | |
370 <option value="correlation">correlation</option> | |
371 <option value="dice">dice</option> | |
372 <option value="hamming">hamming</option> | |
373 <option value="jaccard">jaccard</option> | |
374 <option value="kulsinski">kulsinski</option> | |
375 <option value="mahalanobis">mahalanobis</option> | |
376 <option value="matching">matching</option> | |
377 <option value="minkowski">minkowski</option> | |
378 <option value="rogerstanimoto">rogerstanimoto</option> | |
379 <option value="russellrao">russellrao</option> | |
380 <option value="seuclidean">seuclidean</option> | |
381 <option value="sokalmichener">sokalmichener</option> | |
382 <option value="sokalsneath">sokalsneath</option> | |
383 <option value="sqeuclidean">sqeuclidean</option> | |
384 <option value="yule">yule</option> | |
385 </xml> | |
386 | |
387 <xml name="pairwise_kernel_metrics"> | |
388 <param argument="metric" type="select" label="Pirwise Kernel metric" help=" "> | |
389 <option value="rbf" selected="true">rbf</option> | |
390 <option value="sigmoid">sigmoid</option> | |
391 <option value="polynomial">polynomial</option> | |
392 <option value="linear" selected="true">linear</option> | |
393 <option value="chi2">chi2</option> | |
394 <option value="additive_chi2">additive_chi2</option> | |
395 </param> | |
396 </xml> | |
397 | |
398 <xml name="sparse_pairwise_metric_functions"> | |
399 <param name="selected_metric_function" type="select" label="Select the pairwise metric you want to compute:"> | |
400 <option value="euclidean_distances" selected="true">Euclidean distance matrix</option> | |
401 <option value="pairwise_distances">Distance matrix</option> | |
402 <option value="pairwise_distances_argmin">Minimum distances between one point and a set of points</option> | |
403 <yield/> | |
404 </param> | |
405 </xml> | |
406 | |
407 <xml name="pairwise_metric_functions"> | |
408 <option value="additive_chi2_kernel" >Additive chi-squared kernel</option> | |
409 <option value="chi2_kernel">Exponential chi-squared kernel</option> | |
410 <option value="linear_kernel">Linear kernel</option> | |
411 <option value="manhattan_distances">L1 distances</option> | |
412 <option value="pairwise_kernels">Kernel</option> | |
413 <option value="polynomial_kernel">Polynomial kernel</option> | |
414 <option value="rbf_kernel">Gaussian (rbf) kernel</option> | |
415 <option value="laplacian_kernel">Laplacian kernel</option> | |
416 </xml> | |
417 | |
418 <xml name="sparse_pairwise_condition"> | |
419 <when value="pairwise_distances"> | |
420 <section name="options" title="Advanced Options" expanded="False"> | |
421 <expand macro="distance_metrics"> | |
422 <yield/> | |
423 </expand> | |
424 </section> | |
425 </when> | |
426 <when value="euclidean_distances"> | |
427 <section name="options" title="Advanced Options" expanded="False"> | |
428 <param argument="squared" type="boolean" optional="true" truevalue="booltrue" falsevalue="boolflase" checked="false" label="Return squared Euclidean distances" help=" "/> | |
429 </section> | |
430 </when> | |
431 </xml> | |
432 | |
433 <xml name="argmin_distance_condition"> | |
434 <when value="pairwise_distances_argmin"> | |
435 <section name="options" title="Advanced Options" expanded="False"> | |
436 <param argument="axis" type="integer" optional="true" value="1" label="Axis" help="Axis along which the argmin and distances are to be computed."/> | |
437 <expand macro="distance_metrics"> | |
438 <yield/> | |
439 </expand> | |
440 <param argument="batch_size" type="integer" optional="true" value="500" label="Batch size" help="Number of rows to be processed in each batch run."/> | |
441 </section> | |
442 </when> | |
443 </xml> | |
444 | |
341 </macros> | 445 </macros> |