mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-10 20:23:10 +00:00
NGSCheckMate doesn't generate a pdf for only one sample, made optional output (#1839)
NGSCheckMate doesn't generate a pdf if only one sample is included, made optional Co-authored-by: Simon Pearce <simon.pearce@cruk.manchester.ac.uk> Co-authored-by: Harshil Patel <drpatelh@users.noreply.github.com>
This commit is contained in:
parent
a363c12d71
commit
d6102dab6d
1 changed files with 1 additions and 1 deletions
|
@ -12,7 +12,7 @@ process NGSCHECKMATE_NCM {
|
||||||
path fasta
|
path fasta
|
||||||
|
|
||||||
output:
|
output:
|
||||||
path "*.pdf" , emit: pdf
|
path "*.pdf" , emit: pdf, optional: true
|
||||||
path "*_corr_matrix.txt", emit: corr_matrix
|
path "*_corr_matrix.txt", emit: corr_matrix
|
||||||
path "*_matched.txt" , emit: matched
|
path "*_matched.txt" , emit: matched
|
||||||
path "*_all.txt" , emit: all
|
path "*_all.txt" , emit: all
|
||||||
|
|
Loading…
Reference in a new issue