Mercurial > repos > bgruening > bedtools_test_bag
diff complementBed.xml @ 5:b78d20957e7f draft
Uploaded
author | bernhardlutz |
---|---|
date | Thu, 05 Jun 2014 15:25:18 -0400 |
parents | |
children | 75d323631dce |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/complementBed.xml Thu Jun 05 15:25:18 2014 -0400 @@ -0,0 +1,30 @@ +<tool id="bedtools_complementbed" name="ComplementBed" version="0.2.0"> + <description></description> + <macros> + <import>macros.xml</import> + </macros> + <expand macro="requirements" /> + <expand macro="stdio" /> + <command> + complementBed + -d $distance + -g genome + > $output + </command> + <inputs> + <param format="bed,vcf,gff,gff3" name="inputA" type="data" label="BED or BAM file"/> + <expand macro="genome" /> + </inputs> + <outputs> + <data format_source="inputA" name="output" metadata_source="inputA" label="Complemen of ${inputA.name}"/> + </outputs> + <help> + +**What it does** + +bedtools complement returns all intervals in a genome that are not covered by at least one interval in the input BED/GFF/VCF file. + +.. image:: $PATH_TO_IMAGES/complement-glyph.png + + </help> +</tool>