-
Notifications
You must be signed in to change notification settings - Fork 1
/
isa2mzdata.xml
77 lines (56 loc) · 1.6 KB
/
isa2mzdata.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<!-- vi: se fdm=marker : -->
<tool id="isa2mzdata" name="ISA to mzData" version="1.3.0">
<description>Extract mzData files from an ISA dataset and output a collection of mzData dataset.</description>
<!-- Command {{{1 -->
<command><![CDATA[
## @@@BEGIN_CHEETAH@@@
$__tool_directory__/extract-from-isa
-i "$isa.extra_files_path"
-e mzData
-o mzData
## @@@END_CHEETAH@@@
]]></command>
<!-- Inputs {{{1 -->
<inputs>
<param name="isa" label="ISA" type="data" format="isa-tab"/>
</inputs>
<!-- Outputs {{{1 -->
<outputs>
<collection name="mzData" type="list" label="mzData files">
<discover_datasets pattern="(?P<designation>.+)\.[mM][zZ][dD][aA][tT][aA]$" directory="mzData" format="mzdata"/>
</collection>
</outputs>
<!-- Tests {{{1 -->
<tests>
<test>
<param name="isa" value="mzdata_study.zip" ftype="isa-tab"/>
<output_collection name="mzData" type="list" count="1">
<element name="empty" file="mzdata_study_output/empty.mzData" ftype="mzdata"/>
</output_collection>
</test>
</tests>
<!-- Help {{{1 -->
<help>
<!-- @@@BEGIN_RST@@@ -->
====================
ISA to mzData
====================
Extract mzData files contained inside an ISA archive.
-----
Input
-----
ISA dataset
===========
The ISA-Tab dataset from which to extract the files.
------
Output
------
The output is a collection of mzData files.
<!-- @@@END_RST@@@ -->
</help>
<!-- Citations {{{1 -->
<citations>
<citation type="doi">10.1038/ng.1054</citation> <!-- ISA -->
<citation type="doi">10.1093/bioinformatics/btu813</citation> <!-- W4M -->
</citations>
</tool>