From 108e6d577c212fde6f36b2802c286fd7ace42777 Mon Sep 17 00:00:00 2001 From: Young Date: Tue, 6 Aug 2024 10:43:13 -0600 Subject: [PATCH] Update datasets to 16.22.1 --- modules/local/datasets.nf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/local/datasets.nf b/modules/local/datasets.nf index b1320ba..4ef6a81 100644 --- a/modules/local/datasets.nf +++ b/modules/local/datasets.nf @@ -2,7 +2,7 @@ process datasets_summary { tag "${taxon}" label "process_single" publishDir params.outdir, mode: 'copy', saveAs: { filename -> filename.equals('versions.yml') ? null : filename } - container 'staphb/ncbi-datasets:16.15.0' + container 'staphb/ncbi-datasets:16.22.1' time '1h' errorStrategy { task.attempt < 2 ? 'retry' : 'ignore' } @@ -52,7 +52,7 @@ process datasets_download { // because there's no way to specify threads label "process_medium" publishDir path: "${params.outdir}", mode: 'copy', pattern: "logs/*/*log" - container 'staphb/ncbi-datasets:16.15.0' + container 'staphb/ncbi-datasets:16.22.1' time '5h' errorStrategy { task.attempt < 2 ? 'retry' : 'ignore'}