mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-10 20:23:10 +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)
|
||||
path(fasta)
|
||||
path(fasta_fai)
|
||||
path(fasta_dict)
|
||||
path(dict)
|
||||
|
||||
output:
|
||||
tuple val(meta), path("**.interval_list"), emit: split_intervals
|
||||
|
|
|
@ -21,6 +21,18 @@ input:
|
|||
type: file
|
||||
description: Interval list or 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:
|
||||
- meta:
|
||||
|
|
Loading…
Reference in a new issue