view zinbra.xml @ 1:8cbb06892b62

Release version: https://github.com/JetBrains-Research/galaxy/commit/a138a0b8f1d471d464a09a95daf5791f41fa0ec5
author Oleg Shpynov <oleg.shpynov@gmail.com>
date Wed, 28 Oct 2015 11:28:49 +0300
parents 5f97f28e65ca
children 0eb50728861a
line wrap: on
line source

<tool id="zinbra" name="Zinbra" version="0.0.1">
    <description>ChIP-Seq enrichment</description>
    <requirements>
        <requirement type="package" version="0.0.1">epigenome</requirement>
    </requirements>
    <stdio>
        <!-- Wrapper ensures anything other than zero is an error -->
        <exit_code range="1:" />
        <exit_code range=":-1" />
    </stdio>
    <command interpreter="python">
        zinbra.py "${genome}" "${bed}" "${bin}" "${fdr}"
    </command>
    <inputs>
        <param name="bed" type="data" format="bed" label="Aligned reads" description="BED Aligned reads to process" />
        <param name="genome" type="data" format="fasta" label="Genome build" description="Genome build reference" />
        <param name="bin" size="5" type="integer" value="200" label="Bin size" />
        <param name="fdr" size="5" type="float" value="0.0001" label="FDR" />
    </inputs>
    <outputs>
        <data name="result" format="bed" label="result.bed" />
    </outputs>
    <help>
Zinbra is a tool for analyzing and comparing ChIP-Seq data using Zero Inflated Negative Binomial Restricted Algorithm.
https://github.com/JetBrains-Research/zinbra
    </help>
</tool>