|
20
|
1 <tool id="bigWigSummary" name="bigWigSummary">
|
|
|
2 <description> Extract summary information from a bigWig file. </description>
|
|
|
3 <command>
|
|
|
4 bigWigSummary $input $chrom $start $end $dataPoints -type=$type> $output
|
|
|
5 </command>
|
|
|
6 <inputs>
|
|
|
7 <param name="input" type="data" format="bigwig" label="Input"/>
|
|
|
8 <param name="chrom" type="text" value="chr" label="Chromosome" help="E.g. 'chr7'"/>
|
|
|
9 <param name="start" type="integer" value="" label="Start coordinate" help="BED format (0-based)."/>
|
|
|
10 <param name="end" type="integer" value="" label="End coordinate" help="BED format (0-based)."/>
|
|
|
11 <param name="dataPoints" type="integer" value="1" label="Number of (equal) parts to break down the selected region." help="Choose 1 for simple summary."/>
|
|
|
12 <param name="type" type="select" label="Operation">
|
|
|
13 <option value="mean">Average value in region (default)</option>
|
|
|
14 <option value="min">Minimum value in region</option>
|
|
|
15 <option value="max">Maximum value in region</option>
|
|
|
16 <option value="std">Standard deviation in region</option>
|
|
|
17 <option value="coverage">Percentage of region that is covered</option>
|
|
|
18 </param>
|
|
|
19 </inputs>
|
|
|
20
|
|
|
21 <outputs>
|
|
|
22 <data format="text" name="output"/>
|
|
|
23 </outputs>
|
|
|
24
|
|
|
25 <tests>
|
|
|
26 <test>
|
|
|
27 <param name="input" value="1.bigwig" />
|
|
|
28 <param name="chrom" value="chr21" />
|
|
|
29 <param name="start" value="10000000" />
|
|
|
30 <param name="end" value="50000000" />
|
|
|
31 <param name="dataPoints" value="3" />
|
|
|
32 <param name="type" value="std" />
|
|
22
|
33 <output name="output" file="1.txt" />
|
|
20
|
34 </test>
|
|
|
35 </tests>
|
|
|
36 <help>
|
|
|
37
|
|
|
38 **Usage**
|
|
|
39 * bigWigSummary file.bigWig chrom start end dataPoints
|
|
|
40 * Get summary data from bigWig for indicated region, broken into dataPoints equal parts. (Use dataPoints=1 for simple summary.)
|
|
|
41
|
|
|
42 </help>
|
|
|
43 </tool>
|