comparison ct_combine_tool_outputs.xml @ 0:7c7d1ef36bf6 draft

"planemo upload for repository https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/ commit 941a94360593f8dfb7804834f29fb2642ddd53a2"
author ebi-gxa
date Wed, 08 Apr 2020 11:34:35 -0400
parents
children a565cf41330b
comparison
equal deleted inserted replaced
-1:000000000000 0:7c7d1ef36bf6
1 <tool id="ct_combine_tool_outputs" name="Cell types - combine tools outputs" version="@TOOL_VERSION@+galaxy0" profile="@PROFILE@">
2 <description>Combine predictions for single tool from multiple datasets</description>
3 <macros>
4 <import>ct_macros.xml</import>
5 </macros>
6 <expand macro="requirements" />
7 <command detect_errors="exit_code"><![CDATA[
8 mkdir -p input_dir;
9 #for $table in $input_tables:
10 cp '$table' input_dir/;
11 #end for
12
13 combine_tool_outputs.R --input-dir input_dir --top-labels-num "${top_labels_num}" --exclusions "${exclusions}" --scores "${scores}" --output-table "${output_table}" ]]></command>
14 <inputs>
15 <param type="data" name="input_tables" label="Tables with predicted labels" multiple="true" format="tsv" help="Standardised tables obtained from multiple classifiers" />
16 <param type="integer" name="top_labels_num" label="Number of top labels" value='3' help="Number of top labels to select" />
17 <param type="data" name="exclusions" label="Exclusions file" format="yml" optional="true" help="Yaml file with trivial terms and unlabelled cells" />
18 <param type="boolean" name="scores" label="scores" checked="false" help="Are scores included into the tool outpus?" />
19 </inputs>
20 <outputs>
21 <data name="output_table" format="tsv" />
22 </outputs>
23 <tests>
24 <test>
25 <param name="input_tables" value="prod_outputs_scpred/E-MTAB-6386_scpred_final-labs.tsv,prod_outputs_scpred/OTHER-DATASET_scpred_final-labs.tsv" />
26 <param name="scores" value="TRUE" />
27 <param name="exclusions" value="exclusions.yml" />
28 <output name="output_table" file="combined_results.tsv" compare="sim_size" />
29 </test>
30 </tests>
31 <help><![CDATA[
32 @HELP@
33
34 @VERSION_HISTORY@
35 ]]></help>
36 <expand macro="citations" />
37 </tool>