Mercurial > repos > iuc > bedtools
annotate unionBedGraphs.xml @ 59:539958feb49c draft
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit 500a03281ea704abc7a16d9af63d67dbdcc5cd0b"
| author | iuc |
|---|---|
| date | Thu, 04 Nov 2021 11:35:06 +0000 |
| parents | 1d0a0d6a78b1 |
| children | f6c88d2e9ae5 |
| rev | line source |
|---|---|
|
57
1d0a0d6a78b1
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit 1e25e8d0bd1ebeb2b94c4bbdff222e56defc1fc2"
iuc
parents:
56
diff
changeset
|
1 <tool id="bedtools_unionbedgraph" name="bedtools Merge BedGraph files" version="@TOOL_VERSION@" profile="@PROFILE@"> |
|
17
a2d4c30ba2f9
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
iuc
parents:
8
diff
changeset
|
2 <description>combines coverage intervals from multiple BEDGRAPH files</description> |
| 8 | 3 <macros> |
| 4 <import>macros.xml</import> | |
| 5 </macros> | |
|
59
539958feb49c
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit 500a03281ea704abc7a16d9af63d67dbdcc5cd0b"
iuc
parents:
57
diff
changeset
|
6 <expand macro="bio_tools" /> |
| 8 | 7 <expand macro="requirements" /> |
| 8 <expand macro="stdio" /> | |
|
50
df28283b3778
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit b68002321ade5e160c556517a98ffb70f068be95
iuc
parents:
48
diff
changeset
|
9 <command><![CDATA[ |
|
df28283b3778
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit b68002321ade5e160c556517a98ffb70f068be95
iuc
parents:
48
diff
changeset
|
10 unionBedGraphs |
|
df28283b3778
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit b68002321ade5e160c556517a98ffb70f068be95
iuc
parents:
48
diff
changeset
|
11 $header |
|
df28283b3778
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit b68002321ade5e160c556517a98ffb70f068be95
iuc
parents:
48
diff
changeset
|
12 -filler '${filler}' |
|
df28283b3778
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit b68002321ade5e160c556517a98ffb70f068be95
iuc
parents:
48
diff
changeset
|
13 $empty.empty_selector |
|
df28283b3778
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit b68002321ade5e160c556517a98ffb70f068be95
iuc
parents:
48
diff
changeset
|
14 @GENOME_FILE_UNION@ |
| 8 | 15 |
|
50
df28283b3778
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit b68002321ade5e160c556517a98ffb70f068be95
iuc
parents:
48
diff
changeset
|
16 #if str($tag.tag_select) == "tag": |
|
df28283b3778
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit b68002321ade5e160c556517a98ffb70f068be95
iuc
parents:
48
diff
changeset
|
17 -i |
|
df28283b3778
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit b68002321ade5e160c556517a98ffb70f068be95
iuc
parents:
48
diff
changeset
|
18 #for $file in $tag.inputs: |
|
df28283b3778
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit b68002321ade5e160c556517a98ffb70f068be95
iuc
parents:
48
diff
changeset
|
19 '${file}' |
|
df28283b3778
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit b68002321ade5e160c556517a98ffb70f068be95
iuc
parents:
48
diff
changeset
|
20 #end for |
|
df28283b3778
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit b68002321ade5e160c556517a98ffb70f068be95
iuc
parents:
48
diff
changeset
|
21 #else: |
|
df28283b3778
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit b68002321ade5e160c556517a98ffb70f068be95
iuc
parents:
48
diff
changeset
|
22 -i |
|
df28283b3778
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit b68002321ade5e160c556517a98ffb70f068be95
iuc
parents:
48
diff
changeset
|
23 #for $bg in $tag.bedgraphs: |
|
df28283b3778
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit b68002321ade5e160c556517a98ffb70f068be95
iuc
parents:
48
diff
changeset
|
24 '${bg.input}' |
|
df28283b3778
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit b68002321ade5e160c556517a98ffb70f068be95
iuc
parents:
48
diff
changeset
|
25 #end for |
|
df28283b3778
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit b68002321ade5e160c556517a98ffb70f068be95
iuc
parents:
48
diff
changeset
|
26 -names |
|
df28283b3778
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit b68002321ade5e160c556517a98ffb70f068be95
iuc
parents:
48
diff
changeset
|
27 #for $bg in $tag.bedgraphs: |
|
df28283b3778
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit b68002321ade5e160c556517a98ffb70f068be95
iuc
parents:
48
diff
changeset
|
28 '${bg.custom_name}' |
|
df28283b3778
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit b68002321ade5e160c556517a98ffb70f068be95
iuc
parents:
48
diff
changeset
|
29 #end for |
|
df28283b3778
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit b68002321ade5e160c556517a98ffb70f068be95
iuc
parents:
48
diff
changeset
|
30 #end if |
|
df28283b3778
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit b68002321ade5e160c556517a98ffb70f068be95
iuc
parents:
48
diff
changeset
|
31 > '${output}' |
|
df28283b3778
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit b68002321ade5e160c556517a98ffb70f068be95
iuc
parents:
48
diff
changeset
|
32 ]]></command> |
| 8 | 33 <inputs> |
| 34 <conditional name="tag"> | |
| 35 <param name="tag_select" type="select" label="Sample name"> | |
| 36 <option value="tag" selected="true">Use input's tag</option> | |
| 37 <option value="custom">Enter custom name per file</option> | |
| 38 </param> | |
| 39 <when value="tag"> | |
|
50
df28283b3778
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit b68002321ade5e160c556517a98ffb70f068be95
iuc
parents:
48
diff
changeset
|
40 <param name="inputs" argument="-i" type="data" format="bedgraph" multiple="true" label="BedGraph files" /> |
| 8 | 41 </when> |
| 42 <when value="custom"> | |
|
50
df28283b3778
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit b68002321ade5e160c556517a98ffb70f068be95
iuc
parents:
48
diff
changeset
|
43 <repeat name="bedgraphs" title="Add BedGraph files" min="2"> |
|
df28283b3778
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit b68002321ade5e160c556517a98ffb70f068be95
iuc
parents:
48
diff
changeset
|
44 <param name="input" argument="-i" type="data" format="bedgraph" multiple="true" label="BedGraph file" /> |
|
df28283b3778
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit b68002321ade5e160c556517a98ffb70f068be95
iuc
parents:
48
diff
changeset
|
45 <param name="custom_name" argument="-names" type="text" area="false" label="Custom sample name" /> |
| 8 | 46 </repeat> |
| 47 </when> | |
| 48 </conditional> | |
|
32
b0d5e752c0c5
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit a78ca56350b1fcf9d7de2a1112155c9bd0844348
iuc
parents:
26
diff
changeset
|
49 <conditional name="empty"> |
|
b0d5e752c0c5
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit a78ca56350b1fcf9d7de2a1112155c9bd0844348
iuc
parents:
26
diff
changeset
|
50 <param name="empty_selector" argument="-empty" type="select" label="Report empty regions" help="Include regions that have zero coverage in all BedGraph datasets"> |
|
b0d5e752c0c5
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit a78ca56350b1fcf9d7de2a1112155c9bd0844348
iuc
parents:
26
diff
changeset
|
51 <option value="-empty">Yes</option> |
|
b0d5e752c0c5
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit a78ca56350b1fcf9d7de2a1112155c9bd0844348
iuc
parents:
26
diff
changeset
|
52 <option value="">No</option> |
|
b0d5e752c0c5
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit a78ca56350b1fcf9d7de2a1112155c9bd0844348
iuc
parents:
26
diff
changeset
|
53 </param> |
|
b0d5e752c0c5
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit a78ca56350b1fcf9d7de2a1112155c9bd0844348
iuc
parents:
26
diff
changeset
|
54 <when value="-empty"> |
|
b0d5e752c0c5
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit a78ca56350b1fcf9d7de2a1112155c9bd0844348
iuc
parents:
26
diff
changeset
|
55 <expand macro="input_conditional_genome_file" /> |
|
b0d5e752c0c5
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit a78ca56350b1fcf9d7de2a1112155c9bd0844348
iuc
parents:
26
diff
changeset
|
56 </when> |
|
b0d5e752c0c5
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit a78ca56350b1fcf9d7de2a1112155c9bd0844348
iuc
parents:
26
diff
changeset
|
57 <when value="" /> |
|
b0d5e752c0c5
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit a78ca56350b1fcf9d7de2a1112155c9bd0844348
iuc
parents:
26
diff
changeset
|
58 </conditional> |
|
50
df28283b3778
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit b68002321ade5e160c556517a98ffb70f068be95
iuc
parents:
48
diff
changeset
|
59 <param argument="-filler" type="text" value="N/A" |
| 8 | 60 label="Text to use for no-coverage value" |
|
50
df28283b3778
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit b68002321ade5e160c556517a98ffb70f068be95
iuc
parents:
48
diff
changeset
|
61 help="Can be 0.0, N/A, - or any other value" /> |
| 8 | 62 <expand macro="print_header" /> |
| 63 </inputs> | |
| 64 <outputs> | |
| 65 <data name="output" format="bedgraph" /> | |
| 66 </outputs> | |
| 67 <tests> | |
| 68 <test> | |
|
32
b0d5e752c0c5
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit a78ca56350b1fcf9d7de2a1112155c9bd0844348
iuc
parents:
26
diff
changeset
|
69 <param name="tag_select" value="tag" /> |
| 8 | 70 <param name="inputs" value="unionBedGraphs1.bg,unionBedGraphs2.bg,unionBedGraphs3.bg" ftype="bedgraph" /> |
|
32
b0d5e752c0c5
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit a78ca56350b1fcf9d7de2a1112155c9bd0844348
iuc
parents:
26
diff
changeset
|
71 <param name="empty_selector" value="" /> |
| 8 | 72 <output name="output" file="unionBedGraphs_result1.bg" ftype="bedgraph" /> |
| 73 </test> | |
| 74 <test> | |
|
32
b0d5e752c0c5
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit a78ca56350b1fcf9d7de2a1112155c9bd0844348
iuc
parents:
26
diff
changeset
|
75 <param name="tag_select" value="tag" /> |
| 8 | 76 <param name="inputs" value="unionBedGraphs1.bg,unionBedGraphs2.bg,unionBedGraphs3.bg" ftype="bedgraph" /> |
|
32
b0d5e752c0c5
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit a78ca56350b1fcf9d7de2a1112155c9bd0844348
iuc
parents:
26
diff
changeset
|
77 <param name="header" value="True" /> |
|
b0d5e752c0c5
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit a78ca56350b1fcf9d7de2a1112155c9bd0844348
iuc
parents:
26
diff
changeset
|
78 <param name="empty_selector" value="" /> |
| 8 | 79 <output name="output" file="unionBedGraphs_result2.bg" ftype="bedgraph" /> |
| 80 </test> | |
| 81 <test> | |
|
32
b0d5e752c0c5
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit a78ca56350b1fcf9d7de2a1112155c9bd0844348
iuc
parents:
26
diff
changeset
|
82 <param name="tag_select" value="tag" /> |
| 8 | 83 <param name="inputs" value="unionBedGraphs1.bg,unionBedGraphs2.bg,unionBedGraphs3.bg" ftype="bedgraph" /> |
|
32
b0d5e752c0c5
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit a78ca56350b1fcf9d7de2a1112155c9bd0844348
iuc
parents:
26
diff
changeset
|
84 <param name="empty_selector" value="-empty" /> |
|
b0d5e752c0c5
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit a78ca56350b1fcf9d7de2a1112155c9bd0844348
iuc
parents:
26
diff
changeset
|
85 <param name="genome_file_opts_selector" value="hist" /> |
|
59
539958feb49c
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit 500a03281ea704abc7a16d9af63d67dbdcc5cd0b"
iuc
parents:
57
diff
changeset
|
86 <param name="genome" value="unionBedGraphs1.len" ftype="tabular" /> |
| 8 | 87 <output name="output" file="unionBedGraphs_result3.bg" ftype="bedgraph" /> |
| 88 </test> | |
| 89 <test> | |
|
32
b0d5e752c0c5
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit a78ca56350b1fcf9d7de2a1112155c9bd0844348
iuc
parents:
26
diff
changeset
|
90 <param name="tag_select" value="custom" /> |
| 8 | 91 <repeat name="bedgraphs"> |
|
59
539958feb49c
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit 500a03281ea704abc7a16d9af63d67dbdcc5cd0b"
iuc
parents:
57
diff
changeset
|
92 <param name="input" value="unionBedGraphs1.bg" ftype="bedgraph" /> |
| 8 | 93 <param name="custom_name" value="first" /> |
| 94 </repeat> | |
| 95 <repeat name="bedgraphs"> | |
|
59
539958feb49c
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit 500a03281ea704abc7a16d9af63d67dbdcc5cd0b"
iuc
parents:
57
diff
changeset
|
96 <param name="input" value="unionBedGraphs2.bg" ftype="bedgraph" /> |
| 8 | 97 <param name="custom_name" value="second" /> |
| 98 </repeat> | |
| 99 <repeat name="bedgraphs"> | |
|
59
539958feb49c
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit 500a03281ea704abc7a16d9af63d67dbdcc5cd0b"
iuc
parents:
57
diff
changeset
|
100 <param name="input" value="unionBedGraphs3.bg" ftype="bedgraph" /> |
| 8 | 101 <param name="custom_name" value="third" /> |
| 102 </repeat> | |
|
32
b0d5e752c0c5
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit a78ca56350b1fcf9d7de2a1112155c9bd0844348
iuc
parents:
26
diff
changeset
|
103 <param name="empty_selector" value="-empty" /> |
|
b0d5e752c0c5
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit a78ca56350b1fcf9d7de2a1112155c9bd0844348
iuc
parents:
26
diff
changeset
|
104 <param name="genome_file_opts_selector" value="hist" /> |
|
59
539958feb49c
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit 500a03281ea704abc7a16d9af63d67dbdcc5cd0b"
iuc
parents:
57
diff
changeset
|
105 <param name="genome" value="unionBedGraphs1.len" ftype="tabular" /> |
| 8 | 106 <output name="output" file="unionBedGraphs_result4.bg" ftype="bedgraph" /> |
| 107 </test> | |
| 108 </tests> | |
|
50
df28283b3778
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit b68002321ade5e160c556517a98ffb70f068be95
iuc
parents:
48
diff
changeset
|
109 <help><![CDATA[ |
| 8 | 110 **What it does** |
| 111 | |
| 112 This tool merges multiple BedGraph files, allowing direct and fine-scale coverage comparisons among many samples/files. The BedGraph files need not represent the same intervals; the tool will identify both common and file-specific intervals. In addition, the BedGraph values need not be numeric: one can use any text as the BedGraph value and the tool will compare the values from multiple files. | |
| 113 | |
| 114 .. class:: warningmark | |
| 115 | |
| 116 This tool requires that each BedGraph file is reference-sorted (chrom, then start) and contains non-overlapping intervals (within a given file). | |
| 117 | |
| 118 | |
| 119 ------ | |
| 120 | |
| 121 **Example input**:: | |
| 122 | |
| 123 # 1.bedgraph | |
| 124 chr1 1000 1500 10 | |
| 125 chr1 2000 2100 20 | |
| 126 | |
| 127 # 2.bedgraph | |
| 128 chr1 900 1600 60 | |
| 129 chr1 1700 2050 50 | |
| 130 | |
| 131 # 3.bedgraph | |
| 132 chr1 1980 2070 80 | |
| 133 chr1 2090 2100 20 | |
| 134 | |
| 135 | |
| 136 ------ | |
| 137 | |
| 138 **Examples using the Zero Coverage checkbox** | |
| 139 | |
| 140 Output example (*without* checking "Report regions with zero coverage"):: | |
|
26
c0fbce5dc84a
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit 19967671ddd4e750f53d71274e5c12325a402811
iuc
parents:
17
diff
changeset
|
141 |
| 8 | 142 chr1 900 1000 0 60 0 |
| 143 chr1 1000 1500 10 60 0 | |
| 144 chr1 1500 1600 0 60 0 | |
| 145 chr1 1700 1980 0 50 0 | |
| 146 chr1 1980 2000 0 50 80 | |
| 147 chr1 2000 2050 20 50 80 | |
| 148 chr1 2050 2070 20 0 80 | |
| 149 chr1 2070 2090 20 0 0 | |
| 150 chr1 2090 2100 20 0 20 | |
| 151 | |
| 152 | |
| 153 Output example (*with* checking "Report regions with zero coverage"). The lines marked with (*) are not covered in any input file, but are still reported (The asterisk marking does not appear in the file).:: | |
|
26
c0fbce5dc84a
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit 19967671ddd4e750f53d71274e5c12325a402811
iuc
parents:
17
diff
changeset
|
154 |
| 8 | 155 chr1 0 900 0 0 0 (*) |
| 156 chr1 900 1000 0 60 0 | |
| 157 chr1 1000 1500 10 60 0 | |
| 158 chr1 1500 1600 0 60 0 | |
| 159 chr1 1600 1700 0 0 0 (*) | |
| 160 chr1 1700 1980 0 50 0 | |
| 161 chr1 1980 2000 0 50 80 | |
| 162 chr1 2000 2050 20 50 80 | |
| 163 chr1 2050 2070 20 0 80 | |
| 164 chr1 2070 2090 20 0 0 | |
| 165 chr1 2090 2100 20 0 20 | |
|
26
c0fbce5dc84a
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit 19967671ddd4e750f53d71274e5c12325a402811
iuc
parents:
17
diff
changeset
|
166 chr1 2100 247249719 0 0 0 (*) |
| 8 | 167 |
| 168 | |
| 169 ------ | |
| 170 | |
| 171 **Examples adjusting the "Filler value" for no-covered intervals** | |
| 172 | |
| 173 The default value is '0', but you can use any other value. | |
| 174 | |
| 175 Output example with **filler = N/A**:: | |
|
26
c0fbce5dc84a
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit 19967671ddd4e750f53d71274e5c12325a402811
iuc
parents:
17
diff
changeset
|
176 |
| 8 | 177 chr1 900 1000 N/A 60 N/A |
| 178 chr1 1000 1500 10 60 N/A | |
| 179 chr1 1500 1600 N/A 60 N/A | |
| 180 chr1 1600 1700 N/A N/A N/A | |
| 181 chr1 1700 1980 N/A 50 N/A | |
| 182 chr1 1980 2000 N/A 50 80 | |
| 183 chr1 2000 2050 20 50 80 | |
| 184 chr1 2050 2070 20 N/A 80 | |
| 185 chr1 2070 2090 20 N/A N/A | |
| 186 chr1 2090 2100 20 N/A 20 | |
| 187 | |
| 188 | |
| 189 ------ | |
| 190 | |
| 191 **Examples using the "sample name" labels**:: | |
| 192 | |
| 193 chrom start end WT-1 WT-2 KO-1 | |
| 194 chr1 900 1000 N/A 60 N/A | |
| 195 chr1 1000 1500 10 60 N/A | |
| 196 chr1 1500 1600 N/A 60 N/A | |
| 197 chr1 1600 1700 N/A N/A N/A | |
| 198 chr1 1700 1980 N/A 50 N/A | |
| 199 chr1 1980 2000 N/A 50 80 | |
| 200 chr1 2000 2050 20 50 80 | |
| 201 chr1 2050 2070 20 N/A 80 | |
| 202 chr1 2070 2090 20 N/A N/A | |
| 203 chr1 2090 2100 20 N/A 20 | |
| 204 | |
| 205 | |
| 206 ------ | |
| 207 | |
| 208 **Non-numeric values** | |
| 209 | |
| 210 The input BedGraph files can contain any kind of value in the fourth column, not necessarily a numeric value. | |
| 211 | |
| 212 Input Example:: | |
|
26
c0fbce5dc84a
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit 19967671ddd4e750f53d71274e5c12325a402811
iuc
parents:
17
diff
changeset
|
213 |
|
c0fbce5dc84a
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit 19967671ddd4e750f53d71274e5c12325a402811
iuc
parents:
17
diff
changeset
|
214 File-1 File-2 |
| 8 | 215 chr1 200 300 Sample1 chr1 100 240 0.75 |
| 216 chr1 400 450 Sample1 chr1 250 700 0.43 | |
| 217 chr1 530 600 Sample2 | |
| 218 | |
| 219 Output Example:: | |
|
26
c0fbce5dc84a
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit 19967671ddd4e750f53d71274e5c12325a402811
iuc
parents:
17
diff
changeset
|
220 |
| 8 | 221 chr1 100 200 0 0.75 |
| 222 chr1 200 240 Sample1 0.75 | |
| 223 chr1 240 250 Sample1 0 | |
| 224 chr1 250 300 Sample1 0.43 | |
| 225 chr1 300 400 0 0.43 | |
| 226 chr1 400 450 Sample1 0.43 | |
| 227 chr1 450 530 0 0.43 | |
| 228 chr1 530 600 Sample2 0.43 | |
| 229 chr1 600 700 0 0.43 | |
| 230 | |
| 231 @REFERENCES@ | |
|
50
df28283b3778
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit b68002321ade5e160c556517a98ffb70f068be95
iuc
parents:
48
diff
changeset
|
232 ]]></help> |
| 8 | 233 <expand macro="citations" /> |
| 234 </tool> |
