comparison isa2mzxml.xml @ 0:975585306dc4 draft default tip

"planemo upload commit c2694fb4aa55c4f25eb53db73496eaf5e56d7872"
author prog
date Wed, 08 Jan 2020 07:50:13 -0500
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:975585306dc4
1 <!-- vi: se fdm=marker : -->
2 <tool id="isa2mzxml" name="ISA to mzXML" version="1.3.0">
3
4 <description>Extract mzXML files from an ISA dataset and output a collection of mzXML dataset.</description>
5
6 <!-- Command {{{1 -->
7
8 <command><![CDATA[
9 ## @@@BEGIN_CHEETAH@@@
10
11 $__tool_directory__/extract-from-isa
12 -i "$isa.extra_files_path"
13 -e mzXML
14 -o mzXML
15
16 ## @@@END_CHEETAH@@@
17 ]]></command>
18
19 <!-- Inputs {{{1 -->
20
21 <inputs>
22 <param name="isa" label="ISA" type="data" format="isa-tab"/>
23 </inputs>
24
25 <!-- Outputs {{{1 -->
26
27 <outputs>
28 <collection name="mzXML" type="list" label="mzXML files">
29 <discover_datasets pattern="(?P&lt;designation&gt;.+)\.[mM][zZ][xX][mM][lL]$" directory="mzXML" format="mzxml"/>
30 </collection>
31 </outputs>
32
33 <!-- Tests {{{1 -->
34 <tests>
35 <test>
36 <param name="isa" value="mzxml_study.zip" ftype="isa-tab"/>
37 <output_collection name="mzXML" type="list" count="1">
38 <element name="empty" file="mzxml_study_output/empty.mzXML" ftype="mzxml"/>
39 </output_collection>
40 </test>
41 </tests>
42
43 <!-- Help {{{1 -->
44 <help>
45 <!-- @@@BEGIN_RST@@@ -->
46
47 ====================
48 ISA to mzXML
49 ====================
50
51 Extract mzXML files contained inside an ISA archive.
52
53 -----
54 Input
55 -----
56
57 ISA dataset
58 ===========
59
60 The ISA-Tab dataset from which to extract the files.
61
62 ------
63 Output
64 ------
65
66 The output is a collection of mzXML files.
67
68 <!-- @@@END_RST@@@ -->
69 </help>
70
71 <!-- Citations {{{1 -->
72 <citations>
73 <citation type="doi">10.1038/ng.1054</citation> <!-- ISA -->
74 <citation type="doi">10.1093/bioinformatics/btu813</citation> <!-- W4M -->
75 </citations>
76
77 </tool>