comparison keras_train_and_eval.xml @ 14:818f9b69d8a0 draft

planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/sklearn commit 80417bf0158a9b596e485dd66408f738f405145a
author bgruening
date Mon, 02 Oct 2023 10:00:27 +0000
parents b3093f953091
children
comparison
equal deleted inserted replaced
13:0af678661e20 14:818f9b69d8a0
6 </macros> 6 </macros>
7 <expand macro="python_requirements" /> 7 <expand macro="python_requirements" />
8 <expand macro="macro_stdio" /> 8 <expand macro="macro_stdio" />
9 <version_command>echo "@VERSION@"</version_command> 9 <version_command>echo "@VERSION@"</version_command>
10 <command> 10 <command>
11 <![CDATA[ 11 <![CDATA[
12 export HDF5_USE_FILE_LOCKING='FALSE'; 12 export HDF5_USE_FILE_LOCKING='FALSE';
13 #if $input_options.selected_input == 'refseq_and_interval' 13 #if $input_options.selected_input == 'refseq_and_interval'
14 bgzip -c '$input_options.target_file' > '${target_file.element_identifier}.gz' && 14 bgzip -c '$input_options.target_file' > '${target_file.element_identifier}.gz' &&
15 tabix -p bed '${target_file.element_identifier}.gz' && 15 tabix -p bed '${target_file.element_identifier}.gz' &&
16 cp '$input_options.ref_genome_file' '${ref_genome_file.element_identifier}' && 16 cp '$input_options.ref_genome_file' '${ref_genome_file.element_identifier}' &&
27 #else 27 #else
28 --infile1 '$input_options.infile1' 28 --infile1 '$input_options.infile1'
29 #end if 29 #end if
30 --infile2 '$input_options.infile2' 30 --infile2 '$input_options.infile2'
31 --outfile_result '$outfile_result' 31 --outfile_result '$outfile_result'
32 #if $save and 'save_csvlogger' in str($save)
33 --outfile_history '$outfile_history'
34 #end if
32 #if $save and 'save_estimator' in str($save) 35 #if $save and 'save_estimator' in str($save)
33 --outfile_object '$outfile_object' 36 --outfile_object '$outfile_object'
34 #end if 37 #end if
35 #if $save and 'save_prediction' in str($save) 38 #if $save and 'save_prediction' in str($save)
36 --outfile_y_true '$outfile_y_true' 39 --outfile_y_true '$outfile_y_true'
37 --outfile_y_preds '$outfile_y_preds' 40 --outfile_y_preds '$outfile_y_preds'
38 #end if 41 #end if
39 #if $experiment_schemes.test_split.split_algos.shuffle == 'group' 42 #if $experiment_schemes.test_split.split_algos.shuffle == 'group'
40 --groups '$experiment_schemes.test_split.split_algos.groups_selector.infile_g' 43 --groups '$experiment_schemes.test_split.split_algos.groups_selector.infile_g'
41 #end if 44 #end if
42
43 ]]> 45 ]]>
44 </command> 46 </command>
45 <configfiles> 47 <configfiles>
46 <inputs name="inputs" /> 48 <inputs name="inputs" />
47 </configfiles> 49 </configfiles>
79 </conditional> 81 </conditional>
80 <expand macro="sl_mixed_input_plus_sequence" /> 82 <expand macro="sl_mixed_input_plus_sequence" />
81 <param name="save" type="select" multiple='true' display="checkboxes" label="Save the fitted model" optional="true" help="Evaluation scores will be output by default."> 83 <param name="save" type="select" multiple='true' display="checkboxes" label="Save the fitted model" optional="true" help="Evaluation scores will be output by default.">
82 <option value="save_estimator" selected="true">Fitted estimator</option> 84 <option value="save_estimator" selected="true">Fitted estimator</option>
83 <option value="save_prediction">True labels and prediction results from evaluation for downstream analysis</option> 85 <option value="save_prediction">True labels and prediction results from evaluation for downstream analysis</option>
86 <option value="save_csvlogger">Display CSVLogger if selected as a callback in the Keras model builder tool</option>
84 </param> 87 </param>
85 </inputs> 88 </inputs>
86 <outputs> 89 <outputs>
87 <data format="tabular" name="outfile_result" /> 90 <data format="tabular" name="outfile_result" />
91 <data format="tabular" name="outfile_history" label="Deep learning training history log on ${on_string}">
92 <filter>str(save) and 'save_csvlogger' in str(save)</filter>
93 </data>
88 <data format="h5mlm" name="outfile_object" label="Fitted estimator or estimator skeleton on ${on_string}"> 94 <data format="h5mlm" name="outfile_object" label="Fitted estimator or estimator skeleton on ${on_string}">
89 <filter>str(save) and 'save_estimator' in str(save)</filter> 95 <filter>str(save) and 'save_estimator' in str(save)</filter>
90 </data> 96 </data>
91 <data format="tabular" name="outfile_y_true" label="True labels/target values on ${on_string}"> 97 <data format="tabular" name="outfile_y_true" label="True labels/target values on ${on_string}">
92 <filter>str(save) and 'save_prediction' in str(save)</filter> 98 <filter>str(save) and 'save_prediction' in str(save)</filter>