forked from bgruening/galaxytools
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconvert.xml
More file actions
27 lines (27 loc) · 965 Bytes
/
convert.xml
File metadata and controls
27 lines (27 loc) · 965 Bytes
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
<tool id="alevin_fry_convert" name="Alevin-Fry Convert" version="@TOOL_VERSION@+galaxy@VERSION_SUFFIX@" python_template_version="3.5" profile="@PROFILE_VERSION@">
<description>Convert BAM/SAM to RAD</description>
<macros>
<import>macros.xml</import>
</macros>
<expand macro="requirements"/>
<command detect_errors="exit_code"><![CDATA[
ln -s '$input' input.bam &&
alevin-fry convert --bam input.bam --output '$output'
]]></command>
<inputs>
<param type="data" name="input" label="BAM or SAM file" format="bam,sam"/>
</inputs>
<outputs>
<data name="output" label="${tool.name} on ${on_string}" format="rad"/>
</outputs>
<tests>
<test>
<param name="input" value="convert/input.bam"/>
<output name="output" file="convert/output.rad"/>
</test>
</tests>
<help><![CDATA[
help
]]></help>
<expand macro="citations"/>
</tool>