0
|
1 <tool id="bam_to_bigwig" name="BAM to BigWig" version="0.0.2">
|
|
2 <description>Calculates coverage from a BAM alignment file</description>
|
|
3 <command interpreter="python">bam_to_wiggle.py $align --outfile=$out</command>
|
|
4 <inputs>
|
|
5 <param format="bam" name="align" type="data" label="BAM alignment file"/>
|
|
6 </inputs>
|
|
7 <outputs>
|
|
8 <data format="bigwig" name="out" />
|
|
9 </outputs>
|
|
10
|
|
11 <help>
|
|
12 **What it does**
|
|
13
|
|
14 Creates a coverage file in BigWig format, given a BAM alignment file.
|
|
15
|
|
16 **Input**
|
|
17
|
|
18 A BAM alignment file. This needs to have the genome database build used in alignment annotated. If your file has '?' for the database build, click on the pencil icon to edit the alignment attributes, and specify the organism used to align against.
|
|
19
|
|
20 **Output**
|
|
21
|
|
22 BigWig files can be loaded directly from Galaxy into the UCSC browser. They can be loaded incrementally by UCSC, so a single file can be used to represent the entire genome without having to upload the entire thing as a custom track.
|
|
23 </help>
|
|
24
|
|
25 </tool>
|