Mercurial > repos > iuc > bedtools
annotate coverageBed.xml @ 43:71d71721695e draft
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit 1ec398a9421f016b852fe59d46961c12321ee5c8
| author | iuc |
|---|---|
| date | Tue, 15 May 2018 14:51:52 -0400 |
| parents | d279800f4ff9 |
| children | b176b1c7949e |
| rev | line source |
|---|---|
|
40
58451dcd076d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit 09721a12bdd393441b162056316241aba3895a4f
iuc
parents:
36
diff
changeset
|
1 <tool id="bedtools_coveragebed" name="Compute both the depth and breadth of coverage" version="@WRAPPER_VERSION@.2"> |
|
25
6c6963cf9136
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit bad476ff5076338f3eebdf0c25bb5a6c745e5592
iuc
parents:
24
diff
changeset
|
2 <description>of features in file B on the features in file A (bedtools coverage)</description> |
| 8 | 3 <macros> |
| 4 <import>macros.xml</import> | |
| 5 </macros> | |
|
43
71d71721695e
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit 1ec398a9421f016b852fe59d46961c12321ee5c8
iuc
parents:
42
diff
changeset
|
6 <expand macro="requirements"> |
|
71d71721695e
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit 1ec398a9421f016b852fe59d46961c12321ee5c8
iuc
parents:
42
diff
changeset
|
7 <requirement type="package" version="@SAMTOOLS_VERSION@">samtools</requirement> |
|
71d71721695e
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit 1ec398a9421f016b852fe59d46961c12321ee5c8
iuc
parents:
42
diff
changeset
|
8 </expand> |
| 8 | 9 <expand macro="stdio" /> |
| 10 <command> | |
| 11 <![CDATA[ | |
|
22
ac8b17b66663
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit 6ce9a5a91d803b9ac9e743d9721ff0ccd2a5a59f
iuc
parents:
8
diff
changeset
|
12 bedtools coverage |
| 8 | 13 $d |
| 14 $hist | |
| 15 $split | |
| 16 $strandedness | |
|
34
ada98688209b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit dc0d10f28180ec2b2d1b0beac637601ea859e8f2
iuc
parents:
26
diff
changeset
|
17 #if str($overlap_a) != "None" and str($overlap_a): |
|
ada98688209b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit dc0d10f28180ec2b2d1b0beac637601ea859e8f2
iuc
parents:
26
diff
changeset
|
18 -f '$overlap_a' |
|
ada98688209b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit dc0d10f28180ec2b2d1b0beac637601ea859e8f2
iuc
parents:
26
diff
changeset
|
19 #end if |
|
ada98688209b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit dc0d10f28180ec2b2d1b0beac637601ea859e8f2
iuc
parents:
26
diff
changeset
|
20 #if str($overlap_b) != "None" and str($overlap_b): |
|
ada98688209b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit dc0d10f28180ec2b2d1b0beac637601ea859e8f2
iuc
parents:
26
diff
changeset
|
21 -F '$overlap_b' |
|
ada98688209b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit dc0d10f28180ec2b2d1b0beac637601ea859e8f2
iuc
parents:
26
diff
changeset
|
22 #end if |
|
ada98688209b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit dc0d10f28180ec2b2d1b0beac637601ea859e8f2
iuc
parents:
26
diff
changeset
|
23 $reciprocal_overlap |
|
ada98688209b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit dc0d10f28180ec2b2d1b0beac637601ea859e8f2
iuc
parents:
26
diff
changeset
|
24 $a_or_b |
|
22
ac8b17b66663
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit 6ce9a5a91d803b9ac9e743d9721ff0ccd2a5a59f
iuc
parents:
8
diff
changeset
|
25 -a '$inputA' |
|
36
1133660b0f9d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit 9f7b029951fa0f854c9c6a5f241ce9a20ae4f22a
iuc
parents:
35
diff
changeset
|
26 #if str($reduce_or_iterate.reduce_or_iterate_selector) == 'iterate': |
|
1133660b0f9d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit 9f7b029951fa0f854c9c6a5f241ce9a20ae4f22a
iuc
parents:
35
diff
changeset
|
27 -b '$reduce_or_iterate.inputB' |
|
40
58451dcd076d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit 09721a12bdd393441b162056316241aba3895a4f
iuc
parents:
36
diff
changeset
|
28 #if $reduce_or_iterate.inputB.is_of_type('bam'): |
|
58451dcd076d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit 09721a12bdd393441b162056316241aba3895a4f
iuc
parents:
36
diff
changeset
|
29 -sorted -g <(samtools view -H $reduce_or_iterate.inputB | tr ':' '\t' | grep SN | cut -f 3,5) |
|
58451dcd076d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit 09721a12bdd393441b162056316241aba3895a4f
iuc
parents:
36
diff
changeset
|
30 #end if |
|
36
1133660b0f9d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit 9f7b029951fa0f854c9c6a5f241ce9a20ae4f22a
iuc
parents:
35
diff
changeset
|
31 #else: |
|
1133660b0f9d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit 9f7b029951fa0f854c9c6a5f241ce9a20ae4f22a
iuc
parents:
35
diff
changeset
|
32 #set inputBs = "' '".join([str($file) for $file in $reduce_or_iterate.inputB]) |
|
1133660b0f9d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit 9f7b029951fa0f854c9c6a5f241ce9a20ae4f22a
iuc
parents:
35
diff
changeset
|
33 -b '$inputBs' |
|
1133660b0f9d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit 9f7b029951fa0f854c9c6a5f241ce9a20ae4f22a
iuc
parents:
35
diff
changeset
|
34 #end if |
|
40
58451dcd076d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit 09721a12bdd393441b162056316241aba3895a4f
iuc
parents:
36
diff
changeset
|
35 #if $inputA.is_of_type('gff') or $inputA.is_of_type('gff3'): |
|
58451dcd076d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit 09721a12bdd393441b162056316241aba3895a4f
iuc
parents:
36
diff
changeset
|
36 | sort -k1,1 -k4,2n |
|
58451dcd076d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit 09721a12bdd393441b162056316241aba3895a4f
iuc
parents:
36
diff
changeset
|
37 #else: |
|
58451dcd076d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit 09721a12bdd393441b162056316241aba3895a4f
iuc
parents:
36
diff
changeset
|
38 | sort -k1,1 -k2,2n |
|
58451dcd076d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit 09721a12bdd393441b162056316241aba3895a4f
iuc
parents:
36
diff
changeset
|
39 #end if |
| 8 | 40 > '$output' |
| 41 ]]> | |
| 42 </command> | |
| 43 <inputs> | |
|
42
d279800f4ff9
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit b75b9e79cf3186a22dc2e1e9d27c1a080b891b59
iuc
parents:
40
diff
changeset
|
44 <param format="bam,@STD_BEDTOOLS_INPUTS@" name="inputA" type="data" label="File A (on which coverage is calculated)" help="BAM/@STD_BEDTOOLS_INPUT_LABEL@ format" /> |
|
36
1133660b0f9d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit 9f7b029951fa0f854c9c6a5f241ce9a20ae4f22a
iuc
parents:
35
diff
changeset
|
45 <conditional name="reduce_or_iterate"> |
|
1133660b0f9d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit 9f7b029951fa0f854c9c6a5f241ce9a20ae4f22a
iuc
parents:
35
diff
changeset
|
46 <param name='reduce_or_iterate_selector' type='select' label='Combined or separate output files'> |
|
1133660b0f9d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit 9f7b029951fa0f854c9c6a5f241ce9a20ae4f22a
iuc
parents:
35
diff
changeset
|
47 <option value='iterate' selected='true'>One output file per 'input B' file</option> |
|
1133660b0f9d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit 9f7b029951fa0f854c9c6a5f241ce9a20ae4f22a
iuc
parents:
35
diff
changeset
|
48 <option value='reduce'>Single output containing results for all 'input B' files</option> |
|
1133660b0f9d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit 9f7b029951fa0f854c9c6a5f241ce9a20ae4f22a
iuc
parents:
35
diff
changeset
|
49 </param> |
|
1133660b0f9d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit 9f7b029951fa0f854c9c6a5f241ce9a20ae4f22a
iuc
parents:
35
diff
changeset
|
50 <when value='iterate'> |
|
42
d279800f4ff9
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit b75b9e79cf3186a22dc2e1e9d27c1a080b891b59
iuc
parents:
40
diff
changeset
|
51 <param format="bam,@STD_BEDTOOLS_INPUTS@" name="inputB" type="data" |
|
d279800f4ff9
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit b75b9e79cf3186a22dc2e1e9d27c1a080b891b59
iuc
parents:
40
diff
changeset
|
52 label="File(s) B (for which coverage is calculated)" help="BAM/@STD_BEDTOOLS_INPUT_LABEL@ format"/> |
|
36
1133660b0f9d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit 9f7b029951fa0f854c9c6a5f241ce9a20ae4f22a
iuc
parents:
35
diff
changeset
|
53 </when> |
|
1133660b0f9d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit 9f7b029951fa0f854c9c6a5f241ce9a20ae4f22a
iuc
parents:
35
diff
changeset
|
54 <when value='reduce'> |
|
42
d279800f4ff9
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit b75b9e79cf3186a22dc2e1e9d27c1a080b891b59
iuc
parents:
40
diff
changeset
|
55 <param format="bam,@STD_BEDTOOLS_INPUTS@" name="inputB" type="data" multiple="true" |
|
d279800f4ff9
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit b75b9e79cf3186a22dc2e1e9d27c1a080b891b59
iuc
parents:
40
diff
changeset
|
56 label="File(s) B (for which coverage is calculated)" help="BAM/@STD_BEDTOOLS_INPUT_LABEL@ format"/> |
|
36
1133660b0f9d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit 9f7b029951fa0f854c9c6a5f241ce9a20ae4f22a
iuc
parents:
35
diff
changeset
|
57 </when> |
|
1133660b0f9d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit 9f7b029951fa0f854c9c6a5f241ce9a20ae4f22a
iuc
parents:
35
diff
changeset
|
58 </conditional> |
| 8 | 59 <expand macro="split" /> |
|
26
c0fbce5dc84a
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit 19967671ddd4e750f53d71274e5c12325a402811
iuc
parents:
25
diff
changeset
|
60 <param name="strandedness" type="boolean" label="Force strandedness" truevalue="-s" falsevalue="" checked="false" |
|
22
ac8b17b66663
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit 6ce9a5a91d803b9ac9e743d9721ff0ccd2a5a59f
iuc
parents:
8
diff
changeset
|
61 help="Only report hits in B that overlap A on the same strand. By default, overlaps are reported without respect to strand (-s)"/> |
| 8 | 62 <param name="d" type="boolean" checked="false" truevalue="-d" falsevalue="" |
|
22
ac8b17b66663
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit 6ce9a5a91d803b9ac9e743d9721ff0ccd2a5a59f
iuc
parents:
8
diff
changeset
|
63 label="Report the depth at each position in each A feature" |
|
ac8b17b66663
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit 6ce9a5a91d803b9ac9e743d9721ff0ccd2a5a59f
iuc
parents:
8
diff
changeset
|
64 help="Positions reported are one based. Each position and depth follow the complete B feature (-d)" /> |
| 8 | 65 <param name="hist" type="boolean" checked="false" truevalue="-hist" falsevalue="" |
|
22
ac8b17b66663
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit 6ce9a5a91d803b9ac9e743d9721ff0ccd2a5a59f
iuc
parents:
8
diff
changeset
|
66 label="Report a histogram of coverage for each feature in A as well as a summary histogram for all features in A" |
|
ac8b17b66663
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit 6ce9a5a91d803b9ac9e743d9721ff0ccd2a5a59f
iuc
parents:
8
diff
changeset
|
67 help="Additional columns after each feature in A: 1) depth 2) # bases at depth 3) size of A 4) % of A at depth (-hist)" /> |
|
34
ada98688209b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit dc0d10f28180ec2b2d1b0beac637601ea859e8f2
iuc
parents:
26
diff
changeset
|
68 <param name="overlap_a" type="text" |
|
ada98688209b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit dc0d10f28180ec2b2d1b0beac637601ea859e8f2
iuc
parents:
26
diff
changeset
|
69 label="Minimum overlap required as a fraction of A." |
|
ada98688209b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit dc0d10f28180ec2b2d1b0beac637601ea859e8f2
iuc
parents:
26
diff
changeset
|
70 help="Default is 1E-9 (i.e., 1bp). (-f)"> |
|
ada98688209b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit dc0d10f28180ec2b2d1b0beac637601ea859e8f2
iuc
parents:
26
diff
changeset
|
71 <sanitizer invalid_char=""> |
|
ada98688209b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit dc0d10f28180ec2b2d1b0beac637601ea859e8f2
iuc
parents:
26
diff
changeset
|
72 <valid initial="string.digits"><add value=",."/></valid> |
|
ada98688209b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit dc0d10f28180ec2b2d1b0beac637601ea859e8f2
iuc
parents:
26
diff
changeset
|
73 </sanitizer> |
|
42
d279800f4ff9
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit b75b9e79cf3186a22dc2e1e9d27c1a080b891b59
iuc
parents:
40
diff
changeset
|
74 </param> |
|
34
ada98688209b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit dc0d10f28180ec2b2d1b0beac637601ea859e8f2
iuc
parents:
26
diff
changeset
|
75 <param name="overlap_b" type="text" |
|
ada98688209b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit dc0d10f28180ec2b2d1b0beac637601ea859e8f2
iuc
parents:
26
diff
changeset
|
76 label="Minimum overlap required as a fraction of B." |
|
ada98688209b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit dc0d10f28180ec2b2d1b0beac637601ea859e8f2
iuc
parents:
26
diff
changeset
|
77 help="Default is 1E-9 (i.e., 1bp). (-F)"> |
|
ada98688209b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit dc0d10f28180ec2b2d1b0beac637601ea859e8f2
iuc
parents:
26
diff
changeset
|
78 <sanitizer invalid_char=""> |
|
ada98688209b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit dc0d10f28180ec2b2d1b0beac637601ea859e8f2
iuc
parents:
26
diff
changeset
|
79 <valid initial="string.digits"><add value=",."/></valid> |
|
ada98688209b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit dc0d10f28180ec2b2d1b0beac637601ea859e8f2
iuc
parents:
26
diff
changeset
|
80 </sanitizer> |
|
42
d279800f4ff9
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit b75b9e79cf3186a22dc2e1e9d27c1a080b891b59
iuc
parents:
40
diff
changeset
|
81 </param> |
|
34
ada98688209b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit dc0d10f28180ec2b2d1b0beac637601ea859e8f2
iuc
parents:
26
diff
changeset
|
82 <param name="reciprocal_overlap" type="boolean" checked="false" truevalue="-r" falsevalue="" |
|
ada98688209b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit dc0d10f28180ec2b2d1b0beac637601ea859e8f2
iuc
parents:
26
diff
changeset
|
83 label="Require that the fraction overlap be reciprocal for A AND B." |
|
ada98688209b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit dc0d10f28180ec2b2d1b0beac637601ea859e8f2
iuc
parents:
26
diff
changeset
|
84 help="if -f is 0.90 and -r is used, this requires that B overlap 90% of A and A _also_ overlaps 90% of B (-r)" /> |
|
ada98688209b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit dc0d10f28180ec2b2d1b0beac637601ea859e8f2
iuc
parents:
26
diff
changeset
|
85 <param name="a_or_b" type="boolean" checked="false" truevalue="-e" falsevalue="" |
|
ada98688209b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit dc0d10f28180ec2b2d1b0beac637601ea859e8f2
iuc
parents:
26
diff
changeset
|
86 label="Require that the minimum fraction be satisfied for A OR B." |
|
ada98688209b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit dc0d10f28180ec2b2d1b0beac637601ea859e8f2
iuc
parents:
26
diff
changeset
|
87 help="if -e is used with -f 0.90 and -F 0.10 this requires that either 90% of A is covered OR 10% of B is covered. Without -e, both fractions would have to be satisfied. (-e)" /> |
| 8 | 88 </inputs> |
| 89 <outputs> | |
|
22
ac8b17b66663
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit 6ce9a5a91d803b9ac9e743d9721ff0ccd2a5a59f
iuc
parents:
8
diff
changeset
|
90 <data format="bed" name="output" metadata_source="inputA" label="Count of overlaps on ${inputA.name}"/> |
| 8 | 91 </outputs> |
| 92 <tests> | |
| 93 <test> | |
| 94 <param name="inputA" value="coverageBedA.bed" ftype="bed" /> | |
|
34
ada98688209b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit dc0d10f28180ec2b2d1b0beac637601ea859e8f2
iuc
parents:
26
diff
changeset
|
95 <param name="inputB" value="coverageBedB.bed" ftype="bed" /> |
| 8 | 96 <output name="output" file="coverageBed_result1.bed" ftype="bed" /> |
| 97 </test> | |
|
34
ada98688209b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit dc0d10f28180ec2b2d1b0beac637601ea859e8f2
iuc
parents:
26
diff
changeset
|
98 <test> |
|
ada98688209b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit dc0d10f28180ec2b2d1b0beac637601ea859e8f2
iuc
parents:
26
diff
changeset
|
99 <param name="inputA" value="coverageBedA.bed" ftype="bed" /> |
|
ada98688209b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit dc0d10f28180ec2b2d1b0beac637601ea859e8f2
iuc
parents:
26
diff
changeset
|
100 <param name="inputB" value="coverageBedB.bed" ftype="bed" /> |
|
ada98688209b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit dc0d10f28180ec2b2d1b0beac637601ea859e8f2
iuc
parents:
26
diff
changeset
|
101 <param name="overlap_b" value="1" /> |
|
ada98688209b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit dc0d10f28180ec2b2d1b0beac637601ea859e8f2
iuc
parents:
26
diff
changeset
|
102 <output name="output" file="coverageBed_result2_F1.bed" ftype="bed" /> |
|
ada98688209b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit dc0d10f28180ec2b2d1b0beac637601ea859e8f2
iuc
parents:
26
diff
changeset
|
103 </test> |
|
ada98688209b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit dc0d10f28180ec2b2d1b0beac637601ea859e8f2
iuc
parents:
26
diff
changeset
|
104 <test> |
|
ada98688209b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit dc0d10f28180ec2b2d1b0beac637601ea859e8f2
iuc
parents:
26
diff
changeset
|
105 <param name="inputA" value="coverageBedA.bed" ftype="bed" /> |
|
ada98688209b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit dc0d10f28180ec2b2d1b0beac637601ea859e8f2
iuc
parents:
26
diff
changeset
|
106 <param name="inputB" value="coverageBedB.bed" ftype="bed" /> |
|
ada98688209b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit dc0d10f28180ec2b2d1b0beac637601ea859e8f2
iuc
parents:
26
diff
changeset
|
107 <param name="overlap_a" value="1" /> |
|
ada98688209b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit dc0d10f28180ec2b2d1b0beac637601ea859e8f2
iuc
parents:
26
diff
changeset
|
108 <param name="reciprocal_overlap" value="true" /> |
|
ada98688209b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit dc0d10f28180ec2b2d1b0beac637601ea859e8f2
iuc
parents:
26
diff
changeset
|
109 <output name="output" file="coverageBed_result3_f1r.bed" ftype="bed" /> |
|
ada98688209b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit dc0d10f28180ec2b2d1b0beac637601ea859e8f2
iuc
parents:
26
diff
changeset
|
110 </test> |
| 8 | 111 </tests> |
| 112 <help> | |
| 113 <![CDATA[ | |
| 114 **What it does** | |
| 115 | |
|
26
c0fbce5dc84a
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit 19967671ddd4e750f53d71274e5c12325a402811
iuc
parents:
25
diff
changeset
|
116 `bedtools coverage`_ computes both the *depth* and *breadth* of coverage of features in |
|
c0fbce5dc84a
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit 19967671ddd4e750f53d71274e5c12325a402811
iuc
parents:
25
diff
changeset
|
117 file B on the features in file A. For example, ``bedtools coverage`` can compute the coverage of sequence alignments |
|
c0fbce5dc84a
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit 19967671ddd4e750f53d71274e5c12325a402811
iuc
parents:
25
diff
changeset
|
118 (file B) across 1 kilobase (arbitrary) windows (file A) tiling a genome of interest. |
|
c0fbce5dc84a
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit 19967671ddd4e750f53d71274e5c12325a402811
iuc
parents:
25
diff
changeset
|
119 One advantage that ``bedtools coverage`` offers is that it not only *counts* the number of features that |
|
22
ac8b17b66663
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit 6ce9a5a91d803b9ac9e743d9721ff0ccd2a5a59f
iuc
parents:
8
diff
changeset
|
120 overlap an interval in file A, it also computes the fraction of bases in the interval in A that were overlapped by one or more features. |
|
ac8b17b66663
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit 6ce9a5a91d803b9ac9e743d9721ff0ccd2a5a59f
iuc
parents:
8
diff
changeset
|
121 Thus, ``bedtools coverage`` also computes the *breadth* of coverage for each interval in A. |
| 8 | 122 |
|
22
ac8b17b66663
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit 6ce9a5a91d803b9ac9e743d9721ff0ccd2a5a59f
iuc
parents:
8
diff
changeset
|
123 .. _bedtools coverage: http://bedtools.readthedocs.org/en/latest/content/tools/coverage.html |
| 8 | 124 |
| 125 .. class:: infomark | |
| 126 | |
|
22
ac8b17b66663
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit 6ce9a5a91d803b9ac9e743d9721ff0ccd2a5a59f
iuc
parents:
8
diff
changeset
|
127 The lines in the output will be comprised of each interval in A, followed by: |
|
ac8b17b66663
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit 6ce9a5a91d803b9ac9e743d9721ff0ccd2a5a59f
iuc
parents:
8
diff
changeset
|
128 |
|
ac8b17b66663
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit 6ce9a5a91d803b9ac9e743d9721ff0ccd2a5a59f
iuc
parents:
8
diff
changeset
|
129 1. The number of features in B that overlapped (by at least one base pair) the A interval. |
|
ac8b17b66663
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit 6ce9a5a91d803b9ac9e743d9721ff0ccd2a5a59f
iuc
parents:
8
diff
changeset
|
130 2. The number of bases in A that had non-zero coverage from features in B. |
|
ac8b17b66663
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit 6ce9a5a91d803b9ac9e743d9721ff0ccd2a5a59f
iuc
parents:
8
diff
changeset
|
131 3. The length of the entry in A. |
|
ac8b17b66663
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit 6ce9a5a91d803b9ac9e743d9721ff0ccd2a5a59f
iuc
parents:
8
diff
changeset
|
132 4. The fraction of bases in A that had non-zero coverage from features in B. |
| 8 | 133 |
| 134 @REFERENCES@ | |
| 135 ]]> | |
| 136 </help> | |
| 137 <expand macro="citations" /> | |
| 138 </tool> |
