comparison umicount.xml @ 0:d1d0ee366702 draft default tip

Uploaded first version
author brenninc
date Wed, 11 May 2016 04:53:30 -0400
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:d1d0ee366702
1 <tool id="umicount" name="umicount" version="0.1">
2 <description>Runs umicount</description>
3 <stdio>
4 <exit_code range="1:" level="fatal" description="Error" />
5 </stdio>
6 <command interpreter="python">
7 dedup_fingerprint.py -f "${input}" > "${output}"
8 </command>
9 <inputs>
10 <param name="input" format="bed" label="Select Paired BED file" type="data" />
11 </inputs>
12 <outputs>
13 <data format="bed" name="output" label="Unicount output for ${on_string}" />
14 </outputs>
15 <tests>
16 <test>
17 <param ftype="bed" name="input" value="paired.bed" />
18 <output file="cagescan_fragments.bed" ftype="bed" name="output" />
19 </test>
20 </tests>
21 <help>
22 <![CDATA[
23 Runs umicount (https://raw.githubusercontent.com/mmendez12/umicount)
24
25 See http://umicount.readthedocs.org/en/latest/introduction.html for more details.
26 ]]>
27 </help>
28 <citations>
29 <citation type="bibtex">
30 @misc{
31 umicount_bibtex,
32 author = {Mickaël Mendez},
33 title = {umicount on GitHub},
34 url = {https://github.com/mmendez12/umicount}
35 }
36 </citation>
37 <citation type="bibtex">
38 @misc{
39 umicount_docs,
40 author = {Mickaël Mendez},
41 title = {umicount documentation on readthedocs},
42 url = {http://umicount.readthedocs.org}
43 }
44 </citation>
45 </citations>
46 </tool>