From 277aba7861769570255d7aaede25808e9dc70ed1 Mon Sep 17 00:00:00 2001 From: Erin Young Date: Fri, 17 May 2024 15:00:49 -0600 Subject: [PATCH] changed order of input --- modules/local/blobtools.nf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/local/blobtools.nf b/modules/local/blobtools.nf index 82e0fd0..0150bcd 100644 --- a/modules/local/blobtools.nf +++ b/modules/local/blobtools.nf @@ -7,7 +7,7 @@ process blobtools_create { errorStrategy { task.attempt < 2 ? 'retry' : 'ignore'} input: - tuple val(meta), file(contig), file(blastn), file(bam) + tuple val(meta), file(contig), file(bam), file(blastn) output: tuple val(meta), file("blobtools/*.blobDB.json"), emit: json