mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-10 20:23:10 +00:00
41 lines
1,008 B
YAML
41 lines
1,008 B
YAML
name: "bedtools_split"
|
|
description: Split BED files into several smaller BED files
|
|
keywords:
|
|
- sort
|
|
tools:
|
|
- "bedtools":
|
|
description: "A powerful toolset for genome arithmetic"
|
|
documentation: "https://bedtools.readthedocs.io/en/latest/content/tools/sort.html"
|
|
licence: "['MIT', 'GPL v2']"
|
|
|
|
input:
|
|
- meta:
|
|
type: map
|
|
description: |
|
|
Groovy Map containing sample information
|
|
e.g. [ id:'test', single_end:false ]
|
|
- bed:
|
|
type: file
|
|
description: BED file
|
|
pattern: "*.bed"
|
|
- bed:
|
|
type: value
|
|
description: The number of files to split the BED into
|
|
|
|
output:
|
|
- meta:
|
|
type: map
|
|
description: |
|
|
Groovy Map containing sample information
|
|
e.g. [ id:'test', single_end:false ]
|
|
- versions:
|
|
type: file
|
|
description: File containing software versions
|
|
pattern: "versions.yml"
|
|
- beds:
|
|
type: file
|
|
description: list of split BED files
|
|
pattern: "*.bed"
|
|
|
|
authors:
|
|
- "@nvnieuwk"
|