2
|
1 <tool id="zinbra123" name="Zinbra123" version="0.0.1">
|
0
|
2 <description>ChIP-Seq enrichment</description>
|
|
3 <requirements>
|
|
4 <requirement type="package" version="0.0.1">epigenome</requirement>
|
|
5 </requirements>
|
|
6 <stdio>
|
|
7 <!-- Wrapper ensures anything other than zero is an error -->
|
|
8 <exit_code range="1:" />
|
|
9 <exit_code range=":-1" />
|
|
10 </stdio>
|
|
11 <command interpreter="python">
|
|
12 zinbra.py "${genome}" "${bed}" "${bin}" "${fdr}"
|
|
13 </command>
|
|
14 <inputs>
|
|
15 <param name="bed" type="data" format="bed" label="Aligned reads" description="BED Aligned reads to process" />
|
1
|
16 <param name="genome" type="data" format="fasta" label="Genome build" description="Genome build reference" />
|
0
|
17 <param name="bin" size="5" type="integer" value="200" label="Bin size" />
|
|
18 <param name="fdr" size="5" type="float" value="0.0001" label="FDR" />
|
|
19 </inputs>
|
|
20 <outputs>
|
|
21 <data name="result" format="bed" label="result.bed" />
|
|
22 </outputs>
|
|
23 <help>
|
|
24 Zinbra is a tool for analyzing and comparing ChIP-Seq data using Zero Inflated Negative Binomial Restricted Algorithm.
|
1
|
25 https://github.com/JetBrains-Research/zinbra
|
0
|
26 </help>
|
|
27 </tool>
|