0
|
1 <tool id="peak2bed" name="PeaksToBed" version="1.0">
|
|
2 <description>Convert FindPeaks output (.peaks) into Bed</description>
|
|
3 <command interpreter="perl">peak2bed.pl -f $inputfile -t $minHeight -o $output -g ${GALAXY_DATA_INDEX_DIR}/shared/ucsc/chrom/${inputfile.dbkey}.len -n $name</command>
|
|
4 <inputs>
|
|
5 <param name="name" type="text" label="type of experiment" value="track name"/>
|
|
6 <param name="inputfile" type="data" label="ChIP-Seq Tag File" value="ChIP-Seq Tag File" format="txt"/>
|
|
7
|
|
8 <param name="minHeight" type="integer" label="Minimal peak height to consider" value="3"/>
|
|
9 </inputs>
|
|
10 <outputs>
|
|
11 <data name="output" format="bed" label="${name}.bed"/>
|
|
12 </outputs>
|
|
13 <help>
|
|
14 **What it does**
|
|
15
|
|
16 This tool creates a .bed file using .peaks output of FindPeaks
|
|
17
|
|
18 </help>
|
|
19 </tool>
|