Mercurial > repos > iuc > bedtools
annotate complementBed.xml @ 15:b73962f8fcbf draft
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit c5007eff737fcabb28fa726ac40f13a1cd4893c1
author | iuc |
---|---|
date | Wed, 05 Jul 2017 17:12:00 -0400 |
parents | 607c0576c6ab |
children | 44867b59dbf2 |
rev | line source |
---|---|
0 | 1 <tool id="bedtools_complementbed" name="ComplementBed" 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>Extract intervals not represented by an interval file</description> |
0 | 3 <macros> |
4 <import>macros.xml</import> | |
5 </macros> | |
6 <expand macro="requirements" /> | |
7 <expand macro="stdio" /> | |
8 <command> | |
1 | 9 <![CDATA[ |
0 | 10 complementBed |
1 | 11 -i "$input" |
12 -g "$genome" | |
13 > "$output" | |
14 ]]> | |
0 | 15 </command> |
16 <inputs> | |
1 | 17 <param format="bed,vcf,gff,gff3" name="input" type="data" label="BED/VCF/GFF file"/> |
0 | 18 <expand macro="genome" /> |
19 </inputs> | |
20 <outputs> | |
1 | 21 <data format_source="input" name="output" metadata_source="input" label="Complemen of ${input.name}"/> |
0 | 22 </outputs> |
1 | 23 <tests> |
24 <test> | |
25 <param name="input" value="a.bed" ftype="bed" /> | |
26 <param name="genome" value="mm9_chr1.len" /> | |
27 <output name="output" file="complementBed_result1.bed" ftype="bed" /> | |
28 </test> | |
29 </tests> | |
0 | 30 <help> |
1 | 31 <![CDATA[ |
0 | 32 **What it does** |
33 | |
34 bedtools complement returns all intervals in a genome that are not covered by at least one interval in the input BED/GFF/VCF file. | |
35 | |
36 .. image:: $PATH_TO_IMAGES/complement-glyph.png | |
37 | |
38 @REFERENCES@ | |
1 | 39 ]]> |
0 | 40 </help> |
41 <expand macro="citations" /> | |
42 </tool> |