forked from bgruening/galaxytools
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcollate.xml
More file actions
32 lines (32 loc) · 1.2 KB
/
collate.xml
File metadata and controls
32 lines (32 loc) · 1.2 KB
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
<tool id="alevin_fry_collate" name="Alevin-Fry Collate" version="@TOOL_VERSION@+galaxy@VERSION_SUFFIX@" python_template_version="3.5" profile="@PROFILE_VERSION@">
<description>Collate a RAD file by corrected cell barcode</description>
<macros>
<import>macros.xml</import>
</macros>
<expand macro="requirements"/>
<command detect_errors="exit_code"><![CDATA[
mkdir input1 &&
ln -s '$input1' input1 &&
mkdir input2 &&
ln -s '$input2' input2 &&
alevin-fry collate --input-dir input1 --rad-dir input2
]]></command>
<inputs>
<param type="data" name="input1" label="Output of 'Alevin-Fry Generate Permit List'" format="directory"/>
<param type="data" name="input2" label="RAD file to be collated" format="rad"/>
</inputs>
<outputs>
<param type="data" name="output1" label="${tool.name} on ${on_string}: $input2.collated" format="rad"/>
<param type="data" name="output2" label="${tool.name} on ${on_string}: collate" format="json"/>
</outputs>
<tests>
<test>
<!-- add tests -->
</test>
</tests>
help
<help>
help
</help>
<expand macro="citations"/>
</tool>