Mercurial > repos > iuc > bedtools
annotate complementBed.xml @ 18:18aeac3cd1db draft
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit dc0d10f28180ec2b2d1b0beac637601ea859e8f2
author | iuc |
---|---|
date | Sat, 21 Oct 2017 07:57:53 -0400 |
parents | 44867b59dbf2 |
children | a8eabd2838f6 |
rev | line source |
---|---|
17
44867b59dbf2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit cf7a3674bc833bbd5fdd2ad02e724935ffc7a174
iuc
parents:
4
diff
changeset
|
1 <tool id="bedtools_complementbed" name="ComplementBed" version="@WRAPPER_VERSION@.1"> |
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" |
17
44867b59dbf2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit cf7a3674bc833bbd5fdd2ad02e724935ffc7a174
iuc
parents:
4
diff
changeset
|
12 -g @GENOME_FILE@ |
1 | 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"/> |
17
44867b59dbf2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit cf7a3674bc833bbd5fdd2ad02e724935ffc7a174
iuc
parents:
4
diff
changeset
|
18 <expand macro="input_conditional_genome_file" /> |
0 | 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" /> | |
17
44867b59dbf2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit cf7a3674bc833bbd5fdd2ad02e724935ffc7a174
iuc
parents:
4
diff
changeset
|
26 <param name="genome_file_opts_selector" value="hist" /> |
1 | 27 <param name="genome" value="mm9_chr1.len" /> |
28 <output name="output" file="complementBed_result1.bed" ftype="bed" /> | |
29 </test> | |
30 </tests> | |
0 | 31 <help> |
1 | 32 <![CDATA[ |
0 | 33 **What it does** |
34 | |
35 bedtools complement returns all intervals in a genome that are not covered by at least one interval in the input BED/GFF/VCF file. | |
36 | |
37 .. image:: $PATH_TO_IMAGES/complement-glyph.png | |
38 | |
39 @REFERENCES@ | |
1 | 40 ]]> |
0 | 41 </help> |
42 <expand macro="citations" /> | |
43 </tool> |