Mercurial > repos > youyuh48 > combine_bracken_outputs
comparison combine_bracken_outputs.xml @ 0:6e90a30b214f draft default tip
planemo upload for repository https://github.com/youyuh48/galaxy-tools/tree/master/tools/combine_bracken_outputs commit e6c33bbc6689e9a0a12ff3f915515d894f1b4671-dirty
author | youyuh48 |
---|---|
date | Sun, 14 Jul 2024 08:45:50 +0000 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:6e90a30b214f |
---|---|
1 <tool id="combine_bracken_outputs" name="Combine Bracken Outputs" version="0.1.0+galaxy0" profile="19.01"> | |
2 <requirements> | |
3 <requirement type="package" version="2.7">bracken</requirement> | |
4 </requirements> | |
5 <command detect_errors="exit_code"><![CDATA[ | |
6 #set dataset_names = [] | |
7 #for $report in $reports | |
8 #silent dataset_names.append(str($report.element_identifier)) | |
9 #end for | |
10 | |
11 combine_bracken_outputs.py | |
12 --names "${",".join($dataset_names)}" | |
13 --files | |
14 #for $report in $reports | |
15 '$report' | |
16 #end for | |
17 --output '$output' | |
18 ]]></command> | |
19 <inputs> | |
20 <param name="reports" label="Bracken report files" type="data" format="tabular" min="2" multiple="True"/> | |
21 </inputs> | |
22 <outputs> | |
23 <data name="output" format="tabular" label="Combined Bracken report file"/> | |
24 </outputs> | |
25 <citations> | |
26 <citation type="bibtex"> | |
27 title = {combine_bracken_outputs}, | |
28 publisher = {GitHub}, | |
29 journal = {GitHub repository}, | |
30 url = {https://github.com/jenniferlu717/Bracken} | |
31 </citation> | |
32 </citations> | |
33 </tool> |