Mercurial > repos > jbrayet > ccat2bed_1_0_docker
changeset 2:3e1608ba11ff draft
Uploaded
author | jbrayet |
---|---|
date | Wed, 10 Feb 2016 04:49:25 -0500 |
parents | 3e5c8eba6a73 |
children | 313e20192e7e |
files | ccat_int2bed.xml |
diffstat | 1 files changed, 30 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/ccat_int2bed.xml Wed Feb 10 04:49:25 2016 -0500 @@ -0,0 +1,30 @@ +<tool id="ccat_int2bed" name="CCAT2bed" version="1.0"> + <description>Convert CCAT output (intervals) into Bed</description> + <requirements> + <container type="docker">institutcuriengsintegration/ccattobed:1.0</container> + </requirements> + <command interpreter="bash"> +ccat2bed.sh -f $inputfile -t $minHeight -o $output -g $genome_selector -n $name -r ${__root_dir__} + </command> + <inputs> + <param name="name" type="text" label="type of experiment" value="track_name"/> + <param name="inputfile" type="data" label="CCAT output interval file" value="CCAT output interval file" format="interval"/> + <param name="genome_selector" type="select" label="Select the genome under study"> + <option value="hg19" selected="true">hg19</option> + <option value="hg18">hg18</option> + <option value="mm9">mm9</option> + <option value="mm10">mm10</option> + </param> + <param name="minHeight" type="integer" label="Minimal read count per peak to consider" value="0"/> + + </inputs> + <outputs> + <data name="output" format="bed" label="${name}.bed"/> + </outputs> + <help> +**What it does** + +This tool creates a .bed file using .peaks output of CCAT + + </help> +</tool>