|
2
|
1 <tool id="ccat_int2bed" name="CCAT2bed" version="1.0">
|
|
|
2 <description>Convert CCAT output (intervals) into Bed</description>
|
|
|
3 <requirements>
|
|
|
4 <container type="docker">institutcuriengsintegration/ccattobed:1.0</container>
|
|
|
5 </requirements>
|
|
|
6 <command interpreter="bash">
|
|
|
7 ccat2bed.sh -f $inputfile -t $minHeight -o $output -g $genome_selector -n $name -r ${__root_dir__}
|
|
|
8 </command>
|
|
|
9 <inputs>
|
|
|
10 <param name="name" type="text" label="type of experiment" value="track_name"/>
|
|
|
11 <param name="inputfile" type="data" label="CCAT output interval file" value="CCAT output interval file" format="interval"/>
|
|
|
12 <param name="genome_selector" type="select" label="Select the genome under study">
|
|
|
13 <option value="hg19" selected="true">hg19</option>
|
|
|
14 <option value="hg18">hg18</option>
|
|
|
15 <option value="mm9">mm9</option>
|
|
|
16 <option value="mm10">mm10</option>
|
|
|
17 </param>
|
|
|
18 <param name="minHeight" type="integer" label="Minimal read count per peak to consider" value="0"/>
|
|
|
19
|
|
|
20 </inputs>
|
|
|
21 <outputs>
|
|
|
22 <data name="output" format="bed" label="${name}.bed"/>
|
|
|
23 </outputs>
|
|
|
24 <help>
|
|
|
25 **What it does**
|
|
|
26
|
|
|
27 This tool creates a .bed file using .peaks output of CCAT
|
|
|
28
|
|
|
29 </help>
|
|
|
30 </tool>
|