mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-12-22 11:08:17 +00:00
updated meta.yml
This commit is contained in:
parent
4f6264f7c3
commit
d1f824ae66
2 changed files with 13 additions and 1 deletions
|
@ -11,7 +11,7 @@ process GATK4_SPLITINTERVALS {
|
||||||
tuple val(meta), path(intervals)
|
tuple val(meta), path(intervals)
|
||||||
path(fasta)
|
path(fasta)
|
||||||
path(fasta_fai)
|
path(fasta_fai)
|
||||||
path(fasta_dict)
|
path(dict)
|
||||||
|
|
||||||
output:
|
output:
|
||||||
tuple val(meta), path("**.interval_list"), emit: split_intervals
|
tuple val(meta), path("**.interval_list"), emit: split_intervals
|
||||||
|
|
|
@ -21,6 +21,18 @@ input:
|
||||||
type: file
|
type: file
|
||||||
description: Interval list or BED
|
description: Interval list or BED
|
||||||
pattern: "*.{interval,interval_list,bed}"
|
pattern: "*.{interval,interval_list,bed}"
|
||||||
|
- fasta:
|
||||||
|
type: file
|
||||||
|
description: Reference FASTA
|
||||||
|
pattern: "*.{fa,fasta}"
|
||||||
|
- fasta_fai:
|
||||||
|
type: file
|
||||||
|
description: Reference FASTA index
|
||||||
|
pattern: "*.fai"
|
||||||
|
- dict:
|
||||||
|
type: file
|
||||||
|
description: Reference sequence dictionary
|
||||||
|
pattern: "*.dict"
|
||||||
|
|
||||||
output:
|
output:
|
||||||
- meta:
|
- meta:
|
||||||
|
|
Loading…
Reference in a new issue