2020-11-11 18:02:40 -05:00
|
|
|
name: bedtools_complement
|
|
|
|
description: Returns all intervals in a genome that are not covered by at least one interval in the input BED/GFF/VCF file.
|
|
|
|
keywords:
|
|
|
|
- bed
|
|
|
|
- complement
|
|
|
|
tools:
|
|
|
|
- bedtools:
|
|
|
|
description: |
|
|
|
|
A set of tools for genomic analysis tasks, specifically enabling genome arithmetic (merge, count, complement) on various file types.
|
2020-11-17 22:19:31 -05:00
|
|
|
documentation: https://bedtools.readthedocs.io/en/latest/content/tools/complement.html
|
2020-11-11 18:02:40 -05:00
|
|
|
input:
|
|
|
|
- meta:
|
|
|
|
type: map
|
|
|
|
description: |
|
|
|
|
Groovy Map containing sample information
|
|
|
|
e.g. [ id:'test', single_end:false ]
|
2021-02-07 15:55:12 -05:00
|
|
|
- bed:
|
2020-11-11 18:02:40 -05:00
|
|
|
type: file
|
2021-02-07 15:55:12 -05:00
|
|
|
description: Input BED file
|
2021-02-07 16:31:02 -05:00
|
|
|
pattern: "*.{bed}"
|
2021-01-27 08:45:42 -05:00
|
|
|
- sizes:
|
|
|
|
type: file
|
|
|
|
description: File which defines the chromosome lengths for a given genome
|
2021-02-07 16:31:02 -05:00
|
|
|
pattern: "*.{sizes}"
|
2020-11-11 18:02:40 -05:00
|
|
|
output:
|
|
|
|
- meta:
|
|
|
|
type: map
|
|
|
|
description: |
|
|
|
|
Groovy Map containing sample information
|
|
|
|
e.g. [ id:'test', single_end:false ]
|
|
|
|
- bed:
|
|
|
|
type: file
|
2021-01-27 08:45:42 -05:00
|
|
|
description: Bed file with all genomic intervals that are not covered by at least one record from the input file.
|
2021-02-07 16:31:02 -05:00
|
|
|
pattern: "*.{bed}"
|
2020-11-11 18:02:40 -05:00
|
|
|
- version:
|
|
|
|
type: file
|
|
|
|
description: File containing software version
|
2020-11-12 21:42:47 -05:00
|
|
|
pattern: "*.{version.txt}"
|
|
|
|
authors:
|
2021-02-07 16:31:02 -05:00
|
|
|
- "@Emiller88"
|
|
|
|
- "@sruthipsuresh"
|
|
|
|
- "@drpatelh"
|