comparison macros.xml @ 0:bd808d1c4e0c draft default tip

planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
author bgruening
date Mon, 12 Aug 2024 17:58:14 +0000
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:bd808d1c4e0c
1 <macros>
2 <token name="@TOOL_VERSION@">0.2.10</token>
3 <token name="@VERSION_SUFFIX@">0</token>
4 <token name="@PROFILE@">24.1</token>
5 <xml name="requirements">
6 <requirements>
7 <requirement type="package" version="@TOOL_VERSION@">flexynesis</requirement>
8 <yield/>
9 </requirements>
10 </xml>
11 <xml name="edam">
12 <edam_topics>
13 <edam_topic>topic_0622</edam_topic>
14 <edam_topic>topic_3474</edam_topic>
15 <edam_topic>topic_2640</edam_topic>
16 </edam_topics>
17 <edam_operations>
18 <edam_operation>operation_3197</edam_operation>
19 <edam_operation>operation_2403</edam_operation>
20 <edam_operation>operation_2426</edam_operation>
21 </edam_operations>
22 </xml>
23 <token name="@CHECK_NON_COMMERCIAL_USE@"><![CDATA[
24 #if not $non_commercial_use
25 >&2 echo "this tool is only available for non commercial use";
26 exit 1;
27 #end if
28 ]]></token>
29 <xml name="main_inputs">
30 <param name="train_clin" type="data" format="csv" label="Training clinical data"/>
31 <param name="test_clin" type="data" format="csv" label="Test clinical data"/>
32 <param name="train_omics_main" type="data" format="csv" label="Training omics data"/>
33 <param name="test_omics_main" type="data" format="csv" label="Test omics data"/>
34 <param name="assay_main" type="text" optional="true" label="What type of assay is your input?" help="This would be used as output name.">
35 <sanitizer invalid_char=" ">
36 <valid initial="string.letters">
37 <add value="_" />
38 </valid>
39 </sanitizer>
40 </param>
41 </xml>
42 <xml name="extra_inputs">
43 <param name="train_omics" type="data" optional="true" format="csv" label="Training omics data"/>
44 <param name="test_omics" type="data" optional="true" format="csv" label="Test omics data"/>
45 <param name="assay" type="text" optional="true" label="What type of assay is your input?" help="This would be used as output name." >
46 <sanitizer invalid_char=" ">
47 <valid initial="string.letters">
48 <add value="_" />
49 </valid>
50 </sanitizer>
51 </param>
52 </xml>
53 <xml name="advanced">
54 <section name="advanced" title="Advanced Options">
55 <param argument="--fusion_type" type="select" label="Fusion method" help="How to fuse the omics layers?">
56 <option value="intermediate">intermediate</option>
57 <option value="early">early</option>
58 </param>
59 <param argument="--finetuning_samples" type="integer" min="0" value="0" label="Number of samples from the test dataset to use for fine-tuning the model." help="Set to 0 to disable fine-tuning." />
60 <param argument="--variance_threshold" type="float" min="0" max="100" value="1" label="Variance threshold (as percentile) to drop low variance features." help="Set to 0 for no variance filtering." />
61 <param argument="--correlation_threshold" type="float" min="0" max="1" value="0.8" label="Correlation threshold to drop highly redundant features." help="Set to 1 for no redundancy filtering." />
62 <param argument="--subsample" type="integer" min="0" value="0" label="Downsample training set to randomly drawn N samples for training." />
63 <param argument="--features_min" type="integer" min="0" value="500" label="Minimum number of features to retain after feature selection." />
64 <param argument="--features_top_percentile" type="float" min="0" max="100" value="20" label="Top percentile features (among the features remaining after variance filtering and data cleanup) to retain after feature selection." />
65 <param argument="--log_transform" type="boolean" truevalue="--log_transform True" falsevalue="" checked="false" label="Whether to apply log-transformation to input data matrices" />
66 <param argument="--early_stop_patience" type="integer" min="-1" value="10" label="How many epochs to wait when no improvements in validation loss are observed." help="Set to -1 to disable early stopping." />
67 <param argument="--hpo_iter" type="integer" min="1" value="100" label="Number of iterations for hyperparameter optimisation." />
68 <param argument="--hpo_patience" type="integer" min="0" value="10" label="How many hyperparameter optimisation iterations to wait for when no improvements are observed." help="Set to 0 to disable early stopping." />
69 <param argument="--use_cv" type="boolean" truevalue="--use_cv" falsevalue="" checked="false" label="Cross validation" help="If set, a 5-fold cross-validation training will be done. Otherwise, a single training on 80 percent of the dataset is done. " />
70 <param argument="--use_loss_weighting" type="boolean" truevalue="--use_loss_weighting True" falsevalue="" checked="true" label="Whether to apply loss-balancing using uncertainty weights method." />
71 <param argument="--evaluate_baseline_performance" type="boolean" truevalue="--evaluate_baseline_performance" falsevalue="" checked="false" label="Enable modeling also with Random Forest + SVMs to see the performance of off-the-shelf tools on the same dataset." />
72 <param argument="--disable_marker_finding" type="boolean" truevalue="--disable_marker_finding" falsevalue="" checked="false" label="Disable marker discovery after model training." />
73 </section>
74 </xml>
75 <xml name="citations">
76 <citations>
77 <citation type="doi">10.1101/2024.07.16.603606</citation>
78 </citations>
79 </xml>
80 </macros>