Mercurial > repos > bgruening > flexynesis
annotate flexynesis.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 |
rev | line source |
---|---|
0
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
1 <tool id="flexynesis" name="Flexynesis" version="@TOOL_VERSION@+galaxy@VERSION_SUFFIX@" profile="@PROFILE@"> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
2 <description>A deep-learning based multi-omics bulk sequencing data integration suite</description> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
3 <macros> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
4 <import>macros.xml</import> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
5 </macros> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
6 <expand macro="edam"/> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
7 <expand macro="requirements"/> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
8 <command detect_errors="exit_code"><![CDATA[ |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
9 @CHECK_NON_COMMERCIAL_USE@ |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
10 mkdir -p input/test input/train output && |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
11 ln -s '$train_clin' input/train/clin.csv && |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
12 ln -s '$test_clin' input/test/clin.csv && |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
13 |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
14 #if str($assay_main) != '': |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
15 #set $name = str($assay_main.replace(" ", "_")) |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
16 ln -s '$train_omics_main' input/train/${name}.csv && |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
17 ln -s '$test_omics_main' input/test/${name}.csv && |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
18 #set $data_names = [$name] |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
19 #else |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
20 ln -s '$train_omics_main' input/train/main.csv && |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
21 ln -s '$test_omics_main' input/test/main.csv && |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
22 #set $data_names = ['main'] |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
23 #end if |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
24 #if str($training_type.model) == 'cm_train': |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
25 #if str($layer_main) == 'input': |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
26 #set $input_layers = $data_names |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
27 #set $output_layers = [] |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
28 #else |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
29 #set $input_layers = [] |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
30 #set $output_layers = $data_names |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
31 #end if |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
32 #end if |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
33 #for $i, $element in enumerate($omics) |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
34 #if str($element.train_omics) != 'None' and str($element.test_omics) != 'None': |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
35 #if str($element.assay) != '': |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
36 #set $i = str($element.assay.replace(" ", "_")) |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
37 #end if |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
38 ln -s '${element.train_omics}' input/train/omics_${i}.csv && |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
39 ln -s '${element.test_omics}' input/test/omics_${i}.csv && |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
40 $data_names.append("omics_" + str($i)) |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
41 #if str($training_type.model) == 'cm_train': |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
42 #if str($element.layer) == 'input': |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
43 $input_layers.append("omics_" + str($i)) |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
44 #else |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
45 $output_layers.append("omics_" + str($i)) |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
46 #end if |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
47 #end if |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
48 #end if |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
49 #end for |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
50 flexynesis |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
51 --data_path 'input' |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
52 --outdir 'output' |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
53 --model_class $model_class |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
54 #if str($model_class) == 'GNN': |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
55 --gnn_conv_type $gnn_conv_type |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
56 --string_organism $string_organism |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
57 --string_node_name $string_node_name |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
58 #end if |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
59 #if str($training_type.model) == 's_train': |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
60 #if str($target_variables) != '': |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
61 --target_variables $target_variables |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
62 #end if |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
63 #if str($surv_event_var) != '': |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
64 --surv_event_var $surv_event_var |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
65 --surv_time_var $surv_time_var |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
66 #end if |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
67 #end if |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
68 #if str($training_type.model) == 'cm_train': |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
69 --input_layers $str(",".join($input_layers)) |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
70 --output_layers $str(",".join($output_layers)) |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
71 #end if |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
72 --fusion_type $fusion_type |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
73 --hpo_iter $hpo_iter |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
74 --finetuning_samples $finetuning_samples |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
75 --variance_threshold $variance_threshold |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
76 --correlation_threshold $correlation_threshold |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
77 --subsample $subsample |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
78 --features_min $features_min |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
79 --features_top_percentile $features_top_percentile |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
80 --data_types $str(",".join($data_names)) |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
81 --early_stop_patience $early_stop_patience |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
82 --hpo_patience $hpo_patience |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
83 $log_transform |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
84 $use_loss_weighting |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
85 $use_cv |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
86 $evaluate_baseline_performance |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
87 $disable_marker_finding |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
88 \${GALAXY_FLEXYNESIS_EXTRA_ARGUMENTS} |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
89 ]]></command> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
90 <inputs> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
91 <param name="non_commercial_use" label="I certify that I am not using this tool for commercial purposes." type="boolean" truevalue="NON_COMMERCIAL_USE" falsevalue="COMMERCIAL_USE" checked="False"> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
92 <validator type="expression" message="This tool is only available for non-commercial use.">value == True</validator> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
93 </param> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
94 <conditional name="training_type"> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
95 <param name="model" type="select" label="Type of Analysis" > |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
96 <option value="s_train">Supervised training</option> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
97 <option value="us_train">Unsupervised Training</option> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
98 <option value="cm_train">Cross-modality Training</option> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
99 </param> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
100 <when value="s_train"> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
101 <expand macro="main_inputs"/> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
102 <repeat name="omics" min="0" title="Multiple omics layers?"> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
103 <expand macro="extra_inputs"/> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
104 </repeat> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
105 <conditional name="model_class" label="Model class"> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
106 <param argument="--model_class" type="select" label="Model class" help="The kind of model class to instantiate"> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
107 <option value="DirectPred">DirectPred</option> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
108 <option value="GNN">GNN</option> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
109 <option value="MultiTripletNetwork">MultiTripletNetwork</option> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
110 <option value="RandomForest">RandomForest</option> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
111 <option value="SVM">SVM</option> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
112 <option value="RandomSurvivalForest">RandomSurvivalForest</option> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
113 </param> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
114 <when value="DirectPred"/> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
115 <when value="GNN"> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
116 <param argument="--gnn_conv_type" type="select" label="Which graph convolution type to use."> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
117 <option value="GC">GC</option> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
118 <option value="GCN">GCN</option> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
119 <option value="SAGE">SAGE</option> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
120 </param> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
121 <param argument="--string_organism" type="select" label="STRING DB organism"> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
122 <option value="9606">Homo sapiens</option> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
123 <option value="10090">Mus musculus</option> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
124 <option value="10116">Rattus norvegicus</option> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
125 <option value="9544">Macaca mulatta</option> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
126 </param> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
127 <param argument="--string_node_name" type="select" label="String node name" > |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
128 <option value="gene_name">Gene name</option> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
129 <option value="gene_id">Gene id</option> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
130 </param> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
131 </when> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
132 <when value="MultiTripletNetwork"/> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
133 <when value="RandomForest"/> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
134 <when value="SVM"/> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
135 <when value="RandomSurvivalForest"/> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
136 </conditional> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
137 <param argument="--target_variables" type="text" label="Target variables" help="Which variables in 'clin.csv' to use for predictions, comma-separated if multiple."> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
138 <sanitizer invalid_char=""> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
139 <valid initial="string.printable"></valid> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
140 </sanitizer> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
141 </param> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
142 <param argument="--surv_event_var" type="text" label="Survival event" help="Which column in 'clin.csv' to use as event/status indicator for survival modeling."> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
143 <sanitizer invalid_char=""> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
144 <valid initial="string.printable"></valid> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
145 </sanitizer> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
146 </param> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
147 <param argument="--surv_time_var" type="text" label="Survival time" help="Which column in 'clin.csv' to use as time/duration indicator for survival modeling."> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
148 <sanitizer invalid_char=""> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
149 <valid initial="string.printable"></valid> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
150 </sanitizer> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
151 </param> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
152 <expand macro="advanced"/> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
153 </when> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
154 <when value="us_train"> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
155 <expand macro="main_inputs"/> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
156 <repeat name="omics" min="0" title="Multiple omics layers?"> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
157 <expand macro="extra_inputs"/> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
158 </repeat> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
159 <param argument="--model_class" type="select" label="Model class" help="The kind of model class to instantiate"> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
160 <option value="supervised_vae">supervised_vae</option> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
161 </param> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
162 <expand macro="advanced"/> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
163 </when> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
164 <when value="cm_train"> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
165 <expand macro="main_inputs"/> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
166 <param name="layer_main" type="select" label="Use this omics data as input or output layer?"> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
167 <option value="input">Input</option> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
168 <option value="output">output</option> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
169 </param> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
170 <repeat name="omics" min="0" title="Multiple omics layers?"> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
171 <expand macro="extra_inputs"/> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
172 <param name="layer" type="select" label="Use this omics data as input or output layer?"> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
173 <option value="input">Input</option> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
174 <option value="output">output</option> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
175 </param> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
176 </repeat> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
177 <param argument="--model_class" type="select" label="Model class" help="The kind of model class to instantiate"> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
178 <option value="CrossModalPred">CrossModalPred</option> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
179 </param> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
180 <expand macro="advanced"/> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
181 </when> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
182 </conditional> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
183 </inputs> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
184 <outputs> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
185 <collection name="results" type="list" label="${tool.name} on ${on_string}: results"> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
186 <discover_datasets pattern="(?P<name>.+)\.csv$" format="csv" directory="output"/> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
187 </collection> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
188 </outputs> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
189 <tests> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
190 <test> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
191 <param name="non_commercial_use" value="True"/> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
192 <param name="train_clin" value="train/clin" ftype="csv"/> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
193 <param name="test_clin" value="test/clin" ftype="csv"/> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
194 <param name="train_omics_main" value="train/gex" ftype="csv"/> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
195 <param name="test_omics_main" value="test/gex" ftype="csv"/> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
196 <param name="assay_main" value="bar"/> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
197 <repeat name="omics"> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
198 <param name="train_omics" value="train/cnv" ftype="csv"/> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
199 <param name="test_omics" value="test/cnv" ftype="csv"/> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
200 <param name="assay" value="foo"/> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
201 </repeat> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
202 <conditional name="training_type"> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
203 <param name="model" value="s_train"/> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
204 <param name="model_class" value="DirectPred"/> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
205 <param name="target_variables" value="Erlotinib"/> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
206 </conditional> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
207 <param name="hpo_iter" value="1"/> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
208 <output_collection name="results" type="list"> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
209 <element name="job.embeddings_test"> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
210 <assert_contents> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
211 <has_n_lines n="50"/> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
212 </assert_contents> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
213 </element> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
214 <element name="job.embeddings_train"> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
215 <assert_contents> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
216 <has_n_lines n="50"/> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
217 </assert_contents> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
218 </element> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
219 <element name="job.feature_importance"> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
220 <assert_contents> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
221 <has_text_matching expression="Erlotinib,0,,bar,A2M,"/> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
222 <has_text_matching expression="Erlotinib,0,,bar,ABCC4,"/> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
223 </assert_contents> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
224 </element> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
225 <element name="job.feature_logs.bar"> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
226 <assert_contents> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
227 <has_n_lines n="25"/> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
228 </assert_contents> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
229 </element> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
230 <element name="job.feature_logs.omics_foo"> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
231 <assert_contents> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
232 <has_n_lines n="25"/> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
233 </assert_contents> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
234 </element> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
235 <element name="job.predicted_labels"> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
236 <assert_contents> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
237 <has_text_matching expression="source_dataset:A-704,Erlotinib,"/> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
238 <has_text_matching expression="target_dataset:KMRC-20,Erlotinib,"/> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
239 </assert_contents> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
240 </element> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
241 <element name="job.stats"> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
242 <assert_contents> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
243 <has_text_matching expression="DirectPred,Erlotinib,numerical,mse,"/> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
244 <has_text_matching expression="DirectPred,Erlotinib,numerical,r2,"/> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
245 <has_text_matching expression="DirectPred,Erlotinib,numerical,pearson_corr,"/> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
246 </assert_contents> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
247 </element> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
248 </output_collection> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
249 </test> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
250 <test> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
251 <param name="non_commercial_use" value="True"/> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
252 <param name="train_clin" value="train/clin" ftype="csv"/> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
253 <param name="test_clin" value="test/clin" ftype="csv"/> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
254 <param name="train_omics_main" value="train/gex" ftype="csv"/> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
255 <param name="test_omics_main" value="test/gex" ftype="csv"/> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
256 <param name="assay_main" value="bar"/> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
257 <conditional name="training_type"> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
258 <param name="model" value="s_train"/> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
259 <param name="model_class" value="DirectPred"/> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
260 <param name="target_variables" value="Erlotinib"/> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
261 </conditional> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
262 <param name="hpo_iter" value="1"/> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
263 <output_collection name="results" type="list"> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
264 <element name="job.embeddings_test"> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
265 <assert_contents> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
266 <has_n_lines n="50"/> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
267 </assert_contents> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
268 </element> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
269 <element name="job.embeddings_train"> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
270 <assert_contents> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
271 <has_n_lines n="50"/> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
272 </assert_contents> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
273 </element> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
274 <element name="job.feature_importance"> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
275 <assert_contents> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
276 <has_text_matching expression="Erlotinib,0,,bar,A2M,"/> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
277 <has_text_matching expression="Erlotinib,0,,bar,ABCC4,"/> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
278 </assert_contents> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
279 </element> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
280 <element name="job.feature_logs.bar"> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
281 <assert_contents> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
282 <has_n_lines n="25"/> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
283 </assert_contents> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
284 </element> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
285 <element name="job.predicted_labels"> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
286 <assert_contents> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
287 <has_text_matching expression="source_dataset:A-704,Erlotinib,"/> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
288 <has_text_matching expression="target_dataset:KMRC-20,Erlotinib,"/> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
289 </assert_contents> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
290 </element> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
291 <element name="job.stats"> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
292 <assert_contents> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
293 <has_text_matching expression="DirectPred,Erlotinib,numerical,mse,"/> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
294 <has_text_matching expression="DirectPred,Erlotinib,numerical,r2,"/> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
295 <has_text_matching expression="DirectPred,Erlotinib,numerical,pearson_corr,"/> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
296 </assert_contents> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
297 </element> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
298 </output_collection> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
299 </test> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
300 <test> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
301 <param name="non_commercial_use" value="True"/> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
302 <param name="train_clin" value="train/clin" ftype="csv"/> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
303 <param name="test_clin" value="test/clin" ftype="csv"/> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
304 <param name="train_omics_main" value="train/gex" ftype="csv"/> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
305 <param name="test_omics_main" value="test/gex" ftype="csv"/> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
306 <param name="assay_main" value="bar"/> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
307 <repeat name="omics"> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
308 <param name="train_omics" value="train/cnv" ftype="csv"/> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
309 <param name="test_omics" value="test/cnv" ftype="csv"/> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
310 <param name="assay" value="foo"/> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
311 </repeat> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
312 <conditional name="training_type"> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
313 <param name="model" value="s_train"/> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
314 <param name="model_class" value="DirectPred"/> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
315 <param name="target_variables" value="Irinotecan"/> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
316 </conditional> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
317 <param name="hpo_iter" value="1"/> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
318 <output_collection name="results" type="list"> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
319 <element name="job.embeddings_test"> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
320 <assert_contents> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
321 <has_n_lines n="50"/> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
322 </assert_contents> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
323 </element> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
324 <element name="job.embeddings_train"> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
325 <assert_contents> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
326 <has_n_lines n="50"/> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
327 </assert_contents> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
328 </element> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
329 <element name="job.feature_importance"> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
330 <assert_contents> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
331 <has_text_matching expression="Irinotecan,0,,bar,A2M,"/> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
332 <has_text_matching expression="Irinotecan,0,,bar,ABCC4,"/> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
333 </assert_contents> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
334 </element> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
335 <element name="job.feature_logs.bar"> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
336 <assert_contents> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
337 <has_n_lines n="25"/> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
338 </assert_contents> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
339 </element> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
340 <element name="job.feature_logs.bar"> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
341 <assert_contents> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
342 <has_n_lines n="25"/> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
343 </assert_contents> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
344 </element> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
345 <element name="job.predicted_labels"> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
346 <assert_contents> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
347 <has_text_matching expression="source_dataset:A-704,Irinotecan,"/> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
348 <has_text_matching expression="target_dataset:KMRC-20,Irinotecan,"/> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
349 </assert_contents> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
350 </element> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
351 <element name="job.stats"> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
352 <assert_contents> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
353 <has_text_matching expression="DirectPred,Irinotecan,numerical,mse,"/> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
354 <has_text_matching expression="DirectPred,Irinotecan,numerical,r2,"/> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
355 <has_text_matching expression="DirectPred,Irinotecan,numerical,pearson_corr,"/> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
356 </assert_contents> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
357 </element> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
358 </output_collection> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
359 </test> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
360 <test> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
361 <param name="non_commercial_use" value="True"/> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
362 <param name="train_clin" value="train/clin" ftype="csv"/> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
363 <param name="test_clin" value="test/clin" ftype="csv"/> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
364 <param name="train_omics_main" value="train/gex" ftype="csv"/> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
365 <param name="test_omics_main" value="test/gex" ftype="csv"/> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
366 <param name="assay_main" value="bar"/> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
367 <repeat name="omics"> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
368 <param name="train_omics" value="train/cnv" ftype="csv"/> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
369 <param name="test_omics" value="test/cnv" ftype="csv"/> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
370 <param name="assay" value="foo"/> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
371 </repeat> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
372 <conditional name="training_type"> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
373 <param name="model" value="us_train"/> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
374 <param name="model_class" value="supervised_vae"/> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
375 </conditional> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
376 <param name="hpo_iter" value="1"/> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
377 <output_collection name="results" type="list"> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
378 <element name="job.embeddings_test"> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
379 <assert_contents> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
380 <has_n_lines n="50"/> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
381 </assert_contents> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
382 </element> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
383 <element name="job.embeddings_train"> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
384 <assert_contents> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
385 <has_n_lines n="50"/> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
386 </assert_contents> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
387 </element> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
388 <element name="job.feature_logs.bar"> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
389 <assert_contents> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
390 <has_n_lines n="25"/> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
391 </assert_contents> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
392 </element> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
393 <element name="job.feature_logs.omics_foo"> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
394 <assert_contents> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
395 <has_n_lines n="25"/> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
396 </assert_contents> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
397 </element> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
398 </output_collection> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
399 </test> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
400 <test> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
401 <param name="non_commercial_use" value="True"/> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
402 <param name="train_clin" value="train/clin" ftype="csv"/> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
403 <param name="test_clin" value="test/clin" ftype="csv"/> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
404 <param name="train_omics_main" value="train/gex" ftype="csv"/> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
405 <param name="test_omics_main" value="test/gex" ftype="csv"/> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
406 <param name="assay_main" value="bar"/> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
407 <param name="layer_main" value="input"/> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
408 <repeat name="omics"> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
409 <param name="train_omics" value="train/cnv" ftype="csv"/> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
410 <param name="test_omics" value="test/cnv" ftype="csv"/> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
411 <param name="assay" value="foo"/> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
412 <param name="layer" value="output"/> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
413 </repeat> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
414 <conditional name="training_type"> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
415 <param name="model" value="cm_train"/> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
416 <param name="model_class" value="CrossModalPred"/> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
417 </conditional> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
418 <param name="hpo_iter" value="1"/> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
419 <output_collection name="results" type="list"> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
420 <element name="job.embeddings_test"> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
421 <assert_contents> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
422 <has_n_lines n="50"/> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
423 </assert_contents> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
424 </element> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
425 <element name="job.embeddings_train"> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
426 <assert_contents> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
427 <has_n_lines n="50"/> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
428 </assert_contents> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
429 </element> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
430 <element name="job.feature_logs.bar"> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
431 <assert_contents> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
432 <has_n_lines n="25"/> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
433 </assert_contents> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
434 </element> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
435 <element name="job.feature_logs.omics_foo"> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
436 <assert_contents> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
437 <has_n_lines n="25"/> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
438 </assert_contents> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
439 </element> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
440 <element name="job.test_decoded.omics_foo"> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
441 <assert_contents> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
442 <has_n_lines n="23"/> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
443 </assert_contents> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
444 </element> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
445 <element name="job.train_decoded.omics_foo"> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
446 <assert_contents> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
447 <has_n_lines n="23"/> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
448 </assert_contents> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
449 </element> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
450 </output_collection> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
451 </test> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
452 <test> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
453 <param name="non_commercial_use" value="True"/> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
454 <param name="train_clin" value="train/clin" ftype="csv"/> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
455 <param name="test_clin" value="test/clin" ftype="csv"/> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
456 <param name="train_omics_main" value="train/gex" ftype="csv"/> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
457 <param name="test_omics_main" value="test/gex" ftype="csv"/> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
458 <param name="assay_main" value="bar"/> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
459 <repeat name="omics"> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
460 <param name="train_omics" value="train/cnv" ftype="csv"/> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
461 <param name="test_omics" value="test/cnv" ftype="csv"/> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
462 <param name="assay" value="foo"/> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
463 </repeat> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
464 <conditional name="training_type"> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
465 <param name="model" value="s_train"/> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
466 <param name="model_class" value="GNN"/> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
467 <param name="gnn_conv_type" value="GC"/> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
468 <param name="string_organism" value="9606"/> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
469 <param name="string_node_name" value="gene_name"/> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
470 <param name="target_variables" value="Erlotinib"/> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
471 </conditional> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
472 <param name="hpo_iter" value="1"/> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
473 <output_collection name="results" type="list"> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
474 <element name="job.embeddings_test"> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
475 <assert_contents> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
476 <has_n_lines n="50"/> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
477 </assert_contents> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
478 </element> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
479 <element name="job.embeddings_train"> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
480 <assert_contents> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
481 <has_n_lines n="50"/> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
482 </assert_contents> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
483 </element> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
484 <element name="job.feature_importance"> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
485 <assert_contents> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
486 <has_text_matching expression="Erlotinib,0,,bar,A2M,"/> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
487 <has_text_matching expression="Erlotinib,0,,bar,ABCC4,"/> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
488 </assert_contents> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
489 </element> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
490 <element name="job.feature_logs.bar"> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
491 <assert_contents> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
492 <has_n_lines n="25"/> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
493 </assert_contents> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
494 </element> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
495 <element name="job.feature_logs.omics_foo"> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
496 <assert_contents> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
497 <has_n_lines n="25"/> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
498 </assert_contents> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
499 </element> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
500 <element name="job.predicted_labels"> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
501 <assert_contents> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
502 <has_text_matching expression="source_dataset:A-704,Erlotinib,"/> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
503 <has_text_matching expression="target_dataset:KMRC-20,Erlotinib,"/> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
504 </assert_contents> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
505 </element> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
506 <element name="job.stats"> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
507 <assert_contents> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
508 <has_text_matching expression="DirectPred,Erlotinib,numerical,mse,"/> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
509 <has_text_matching expression="DirectPred,Erlotinib,numerical,r2,"/> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
510 <has_text_matching expression="DirectPred,Erlotinib,numerical,pearson_corr,"/> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
511 </assert_contents> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
512 </element> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
513 </output_collection> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
514 </test> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
515 <test> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
516 <param name="non_commercial_use" value="True"/> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
517 <param name="train_clin" value="train/clin" ftype="csv"/> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
518 <param name="test_clin" value="test/clin" ftype="csv"/> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
519 <param name="train_omics_main" value="train/gex" ftype="csv"/> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
520 <param name="test_omics_main" value="test/gex" ftype="csv"/> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
521 <param name="assay_main" value="b ar"/> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
522 <repeat name="omics"> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
523 <param name="train_omics" value="train/cnv" ftype="csv"/> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
524 <param name="test_omics" value="test/cnv" ftype="csv"/> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
525 <param name="assay" value="f oo"/> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
526 </repeat> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
527 <conditional name="training_type"> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
528 <param name="model" value="us_train"/> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
529 <param name="model_class" value="supervised_vae"/> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
530 </conditional> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
531 <param name="hpo_iter" value="1"/> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
532 <output_collection name="results" type="list"> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
533 <element name="job.embeddings_test"> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
534 <assert_contents> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
535 <has_n_lines n="50"/> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
536 </assert_contents> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
537 </element> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
538 <element name="job.embeddings_train"> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
539 <assert_contents> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
540 <has_n_lines n="50"/> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
541 </assert_contents> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
542 </element> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
543 <element name="job.feature_logs.b_ar"> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
544 <assert_contents> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
545 <has_n_lines n="25"/> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
546 </assert_contents> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
547 </element> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
548 <element name="job.feature_logs.omics_f_oo"> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
549 <assert_contents> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
550 <has_n_lines n="25"/> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
551 </assert_contents> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
552 </element> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
553 </output_collection> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
554 </test> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
555 </tests> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
556 <help> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
557 .. class:: warningmark |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
558 |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
559 **WARNING: This tool is only available for NON-COMMERCIAL use. Permission is only granted for academic, research, and educational purposes. Before using, be sure to review, agree, and comply with the license.** |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
560 |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
561 Flexynesis is a deep-learning based multi-omics bulk sequencing data integration suite with a focus on (pre-)clinical endpoint prediction. |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
562 The package includes multiple types of deep learning architectures such as simple fully connected networks, supervised variational autoencoders, graph convolutional networks, multi-triplet networks different options of data layer fusion, and automates feature selection and hyperparameter optimisation. |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
563 |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
564 For more information, please check the Documentation_ : |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
565 |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
566 For commercial use, please review the license_ and contact the `copyright holders`_ . |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
567 |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
568 ----- |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
569 |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
570 .. image:: https://raw.githubusercontent.com/BIMSBbioinfo/flexynesis/c4634d97f84e51f569dcfdab2caf42c9be453ef6/img/graphical_abstract.jpg |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
571 :width: 600 |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
572 |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
573 ----- |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
574 |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
575 **Input Files** |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
576 |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
577 **clin.csv** |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
578 |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
579 clin.csv contains the sample metadata. The first column contains unique sample identifiers. The other columns contain sample-associated clinical variables. NA values are allowed in the clinical variables. |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
580 |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
581 The format might look like so: |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
582 |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
583 ======== === === === |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
584 , v1 v2 ... |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
585 -------- --- --- --- |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
586 sample1 a b ... |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
587 -------- --- --- --- |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
588 sample2 c d ... |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
589 -------- --- --- --- |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
590 sample3 e f ... |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
591 -------- --- --- --- |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
592 ... ... ... ... |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
593 ======== === === === |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
594 |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
595 . |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
596 |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
597 **omics.csv** |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
598 |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
599 The first column of the feature tables must be unique feature identifiers (e.g. gene names). The column names must be sample identifiers that should overlap with those in the clin.csv. They don't have to be completely identical or in the same order. Samples from the clin.csv that are not represented in the omics table will be dropped. |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
600 |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
601 The format might look like so: |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
602 |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
603 ===== ======= ======= ======= ======= |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
604 , sample1 sample2 sample3 ... |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
605 ----- ------- ------- ------- ------- |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
606 gene1 0 1 2 ... |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
607 ----- ------- ------- ------- ------- |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
608 gene2 3 3 5 ... |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
609 ----- ------- ------- ------- ------- |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
610 gene3 2 3 4 ... |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
611 ----- ------- ------- ------- ------- |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
612 ... ... ... ... ... |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
613 ===== ======= ======= ======= ======= |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
614 |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
615 . |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
616 |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
617 .. class:: infomark |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
618 |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
619 **Concordance between train/test splits:** |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
620 |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
621 The corresponding omics files in train/test splits must contain overlapping feature names (they don't have to be identical or in the same order). The clin.csv files in train/test must contain matching clinical variables. |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
622 |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
623 ----- |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
624 |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
625 **Supervised Training** |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
626 |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
627 **Minimum requirements** |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
628 |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
629 * clin.csv and omics.csv files for training and testing |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
630 * Selection of a tool/model |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
631 * One target variable which can be numerical or categorical for regression/classification tasks. |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
632 |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
633 Flexynesis supports both single-task and multi-task training. We can provide one or more target variables and optionally survival variables as input and Flexynesis will build the appropriate model architecture. If the selected variable is numerical, a Multi-Layered-Perceptron (MLP) with MSE loss will be used. If a categorical variable is provided, an MLP with cross-entropy-loss will be utilized. If survival variables are provided, an MLP with Cox-Proportional-Hazards loss will be attached to the model. |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
634 |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
635 **Regression:** |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
636 |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
637 |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
638 If your target variable is numerical, Flexynesis will build a regression model. |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
639 |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
640 **Classification:** |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
641 |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
642 |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
643 If your target variable is categorical, Flexynesis will build a classification model. |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
644 |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
645 **Survival Analysis:** |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
646 |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
647 |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
648 If your target variable is survival data, Flexynesis will build a survival analysis model. |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
649 For survival analysis, two separate variables are required, where the first variable is a numeric event variable (consisting of 0's or 1's, where 1 means an event such as disease progression or death has occurred). The second variable is also a numeric time variable, which indicates how much time it took since last patient follow-up. |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
650 |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
651 .. class:: infomark |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
652 |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
653 **Note:** Flexynesis can be trained with multiple target variables, which can be a mixture of regression/classification/survival tasks. |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
654 |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
655 .. class:: infomark |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
656 |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
657 **Note:** For the supervised tasks, the user can easily switch between different model architectures. |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
658 |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
659 .. class:: infomark |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
660 |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
661 **Note:** If you choose **MultiTripletNetwork** model, the first target variable should be a categorical variable. |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
662 |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
663 .. class:: infomark |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
664 |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
665 **Note:** If you choose **GNN** model, the features should have the same naming convention between different omics modalities. |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
666 |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
667 .. class:: infomark |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
668 |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
669 **Note:** The **GNN** model only works with genes (for example CpG methylation sites does not work). The reason is that GNNs require a prior knowledge network, which is currently set to use STRING database. |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
670 |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
671 ----- |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
672 |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
673 **Unsupervised Training** |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
674 |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
675 In the absence of any target variables or survival variables, you can use a VAE architecture to carry out unsupervised training. |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
676 |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
677 ----- |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
678 |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
679 **Cross-modality Training** |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
680 |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
681 We have implemented a special case of VAEs where the input data layers and output data layers can be set to different data modalities. The purpose of a cross-modality encoder is to learn embeddings that can translate from one data modality to another. Crossmodality encoder we implemented supports both single/multiple input layers and also one or more target/survival variables can be added to the model. |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
682 |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
683 .. class:: infomark |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
684 |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
685 **Note:** if you use same input and output layers, it will be the same as unsupervised training. |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
686 |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
687 ----- |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
688 |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
689 .. class:: infomark |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
690 |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
691 **Modality fusion:** |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
692 |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
693 Flexynesis currently supports two main ways of fusing different omics data modalities: 1. Early fusion: The input data matrices are initially concatenated and pushed through the networks 2. Intermediate fusion: The input data matrices are initially pushed through the networks to obtain a modality-specific embedding space, which then gets concatenated to serve as input for the supervisor MLPs. |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
694 |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
695 .. _license: https://github.com/BIMSBbioinfo/flexynesis/blob/main/LICENSE |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
696 .. _Documentation: https://bimsbstatic.mdc-berlin.de/akalin/buyar/flexynesis/site/ |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
697 .. _copyright holders: https://github.com/BIMSBbioinfo/flexynesis |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
698 </help> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
699 |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
700 <expand macro="citations" /> |
bd808d1c4e0c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis commit b6763da7273957b7362787b7fdc6af5572161adb
bgruening
parents:
diff
changeset
|
701 </tool> |