Mercurial > repos > iuc > bedtools
annotate multiCov.xml @ 4:607c0576c6ab draft
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit 6692e3a4fa1bf6e9a407735afdbb2454ed32b316
author | iuc |
---|---|
date | Wed, 27 Jan 2016 15:15:59 -0500 |
parents | 82aac94b06c3 |
children | c78cf6fe3018 |
rev | line source |
---|---|
0 | 1 <tool id="bedtools_multicovtbed" name="MultiCovBed" version="@WRAPPER_VERSION@.0"> |
4
607c0576c6ab
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit 6692e3a4fa1bf6e9a407735afdbb2454ed32b316
iuc
parents:
1
diff
changeset
|
2 <description>counts coverage from multiple BAMs at specific intervals</description> |
0 | 3 <macros> |
4 <import>macros.xml</import> | |
5 </macros> | |
6 <expand macro="requirements" /> | |
7 <expand macro="stdio" /> | |
8 <command> | |
1 | 9 <![CDATA[ |
10 #for $i, $bam in enumerate( $bams ): | |
11 ln -s -f $bam ${i}.bam && | |
12 ln -s -f $bam.metadata.bam_index ${i}.bam.bai && | |
0 | 13 #end for |
1 | 14 |
15 bedtools multicov | |
16 -bed $input | |
17 -bams | |
18 #for $i, $bam in enumerate( $bams ): | |
19 ${i}.bam | |
20 #end for | |
21 $strand | |
22 -f $overlap | |
23 $reciprocal | |
24 $split | |
25 -q $q | |
26 $duplicate | |
27 $failed | |
28 $proper | |
29 > $output | |
30 ]]> | |
0 | 31 </command> |
32 <inputs> | |
1 | 33 <param name="input" format="bed" type="data" label="Sorted BED file" /> |
0 | 34 <!-- Additional files, if the user needs more --> |
1 | 35 <param name="bams" format="bam" type="data" multiple="True" label="BAM file" /> |
36 | |
0 | 37 <expand macro="strand2" /> |
38 <expand macro="overlap" /> | |
1 | 39 <expand macro="reciprocal" /> |
0 | 40 <expand macro="split" /> |
1 | 41 <param name="q" type="integer" value="0" label="Minimum mapping quality (MAPQ) allowed" help="(-q)" /> |
42 <param name="duplicate" type="boolean" checked="False" truevalue="-D" falsevalue="" | |
43 label="Include duplicate reads" | |
44 help="Default counts non-duplicates only. (-D)" /> | |
45 <param name="failed" type="boolean" checked="false" truevalue="-F" falsevalue="" | |
46 label="Include failed-QC reads" | |
47 help="Default counts pass-QC reads only (-F)"/> | |
48 <param name="proper" type="boolean" checked="false" truevalue="-p" falsevalue="" | |
49 label="Only count proper pairs" | |
50 help="Default counts all alignments with MAPQ > -q argument, regardless of the BAM FLAG field. (-p)" /> | |
0 | 51 </inputs> |
52 <outputs> | |
1 | 53 <data name="output" metadata_source="input" format_source="input" /> |
0 | 54 </outputs> |
1 | 55 <tests> |
56 <test> | |
57 <param name="input" value="multiCov1.bed" ftype="bed" /> | |
58 <param name="bams" value="srma_in3.bam,srma_in3.bam" ftpye="bam"/> | |
59 <param name="q" value="1"/> | |
60 <param name="split" value="False"/> | |
61 <output name="output" file="multiCovBed_result1.bed" ftype="bed" /> | |
62 </test> | |
63 </tests> | |
0 | 64 <help> |
1 | 65 <![CDATA[ |
0 | 66 **What it does** |
67 | |
68 bedtools multicov, reports the count of alignments from multiple position-sorted and indexed BAM files that overlap intervals in a BED file. Specifically, for each BED interval provided, it reports a separate count of overlapping alignments from each BAM file. | |
69 | |
70 | |
71 @REFERENCES@ | |
1 | 72 ]]> |
0 | 73 </help> |
74 <expand macro="citations" /> | |
75 </tool> |