From 46887a737d1671da95a4d89d82f43eeb4a7de398 Mon Sep 17 00:00:00 2001 From: sahuno Date: Thu, 23 Apr 2026 22:04:05 -0400 Subject: [PATCH 1/3] feat: add modkit/extract/full module Add new nf-core module wrapping `modkit extract full`, which transforms the MM/ML tags in a modBAM into a tab-separated per-read-per-position probability table. Output can be BGZF-compressed via `--bgzf` in `ext.args`. Useful for downstream custom filtering, plotting, and ML training on read-level methylation probabilities. Co-Authored-By: Claude Opus 4.7 (1M context) --- .../modkit/extract/full/environment.yml | 7 ++ modules/nf-core/modkit/extract/full/main.nf | 46 +++++++ modules/nf-core/modkit/extract/full/meta.yml | 115 ++++++++++++++++++ .../modkit/extract/full/tests/main.nf.test | 72 +++++++++++ .../extract/full/tests/main.nf.test.snap | 96 +++++++++++++++ .../modkit/extract/full/tests/nextflow.config | 5 + 6 files changed, 341 insertions(+) create mode 100644 modules/nf-core/modkit/extract/full/environment.yml create mode 100644 modules/nf-core/modkit/extract/full/main.nf create mode 100644 modules/nf-core/modkit/extract/full/meta.yml create mode 100644 modules/nf-core/modkit/extract/full/tests/main.nf.test create mode 100644 modules/nf-core/modkit/extract/full/tests/main.nf.test.snap create mode 100644 modules/nf-core/modkit/extract/full/tests/nextflow.config diff --git a/modules/nf-core/modkit/extract/full/environment.yml b/modules/nf-core/modkit/extract/full/environment.yml new file mode 100644 index 000000000000..dac7b506e89f --- /dev/null +++ b/modules/nf-core/modkit/extract/full/environment.yml @@ -0,0 +1,7 @@ +--- +# yaml-language-server: $schema=https://raw.githubusercontent.com/nf-core/modules/master/modules/environment-schema.json +channels: + - conda-forge + - bioconda +dependencies: + - "bioconda::ont-modkit=0.6.1" diff --git a/modules/nf-core/modkit/extract/full/main.nf b/modules/nf-core/modkit/extract/full/main.nf new file mode 100644 index 000000000000..92f5a88039ba --- /dev/null +++ b/modules/nf-core/modkit/extract/full/main.nf @@ -0,0 +1,46 @@ +process MODKIT_EXTRACT_FULL { + tag "$meta.id" + label 'process_high' + + conda "${moduleDir}/environment.yml" + container "${ workflow.containerEngine in ['singularity', 'apptainer'] && !task.ext.singularity_pull_docker_container ? + 'https://depot.galaxyproject.org/singularity/ont-modkit:0.6.1--hcdda2d0_0': + 'quay.io/biocontainers/ont-modkit:0.6.1--hcdda2d0_0' }" + + input: + tuple val(meta), path(bam), path(bai) + tuple val(meta2), path(fasta), path(fai) + + output: + tuple val(meta), path("*.tsv{,.gz}"), emit: tsv + tuple val(meta), path("*.log") , emit: log, optional: true + tuple val("${task.process}"), val('modkit'), eval("modkit --version | sed 's/modkit //'"), emit: versions_modkit, topic: versions + + when: + task.ext.when == null || task.ext.when + + script: + def args = task.ext.args ?: '' + def prefix = task.ext.prefix ?: "${meta.id}" + def reference = fasta ? "--reference ${fasta}" : '' + // BGZF output is detected automatically from --bgzf in ext.args; suffix accordingly + def out_suffix = args.tokenize().contains('--bgzf') ? 'tsv.gz' : 'tsv' + """ + modkit \\ + extract \\ + full \\ + $args \\ + --threads ${task.cpus} \\ + ${reference} \\ + ${bam} \\ + ${prefix}.${out_suffix} + """ + + stub: + def args = task.ext.args ?: '' + def prefix = task.ext.prefix ?: "${meta.id}" + def out_suffix = args.tokenize().contains('--bgzf') ? 'tsv.gz' : 'tsv' + """ + touch ${prefix}.${out_suffix} + """ +} diff --git a/modules/nf-core/modkit/extract/full/meta.yml b/modules/nf-core/modkit/extract/full/meta.yml new file mode 100644 index 000000000000..0a2d9fee4039 --- /dev/null +++ b/modules/nf-core/modkit/extract/full/meta.yml @@ -0,0 +1,115 @@ +name: modkit_extract_full +description: | + Transform the probabilities from the MM/ML tags in a modBAM into a + tab-separated per-read-per-position table. Emits one row for every + modified-base probability call in every read — useful for downstream + custom filtering, plotting, and ML training. Optionally BGZF-compressed + via `--bgzf` in `ext.args`. +keywords: + - modkit + - methylation + - extract + - read-level + - modbam + - nanopore + - ont +tools: + - "modkit": + description: A bioinformatics tool for working with modified bases in Oxford Nanopore + sequencing data. + homepage: https://github.com/nanoporetech/modkit + documentation: https://nanoporetech.github.io/modkit/ + tool_dev_url: https://github.com/nanoporetech/modkit + licence: + - "Oxford Nanopore Technologies PLC. Public License Version 1.0" + identifier: "" +input: + - - meta: + type: map + description: | + Groovy Map containing sample information + e.g. `[ id:'sample1' ]`. The output inherits this meta. + - bam: + type: file + description: Input modBAM with MM/ML tags. + pattern: "*.{bam,cram}" + ontologies: + - edam: http://edamontology.org/format_2572 + - bai: + type: file + description: BAM index (`.bai` or `.csi`). Optional — if absent, modkit does + a serial scan of the BAM (see `--ignore-index`). + pattern: "*.{bai,csi}" + ontologies: [] + - - meta2: + type: map + description: | + Groovy Map containing reference information + e.g. `[ id:'mm10' ]`. May be `[[], [], []]` to skip (modkit works + unaligned, but reference context columns will be missing). + - fasta: + type: file + description: Reference FASTA. Required to populate reference-context columns + in the output (`ref_kmer`, strand, etc.). + pattern: "*.{fa,fasta,fna}" + ontologies: + - edam: http://edamontology.org/format_1929 + - fai: + type: file + description: Samtools FASTA index for `fasta`. + pattern: "*.fai" + ontologies: + - edam: http://edamontology.org/format_3475 +output: + tsv: + - - meta: + type: map + description: | + Groovy Map containing sample information + e.g. `[ id:'sample1' ]`. + - "*.tsv{,.gz}": + type: file + description: | + Per-read-per-position probability table. BGZF-compressed when + `--bgzf` is passed via `ext.args`. + pattern: "*.{tsv,tsv.gz}" + ontologies: + - edam: http://edamontology.org/format_3475 + log: + - - meta: + type: map + description: | + Groovy Map containing sample information + e.g. `[ id:'sample1' ]`. + - "*.log": + type: file + description: | + Optional modkit debug log (only emitted when `--log-filepath + .log` is passed via `ext.args`). + pattern: "*.log" + ontologies: [] + versions_modkit: + - - ${task.process}: + type: string + description: The name of the process + - modkit: + type: string + description: The name of the tool + - modkit --version | sed 's/modkit //': + type: eval + description: The expression to obtain the version of the tool +topics: + versions: + - - ${task.process}: + type: string + description: The name of the process + - modkit: + type: string + description: The name of the tool + - modkit --version | sed 's/modkit //': + type: eval + description: The expression to obtain the version of the tool +authors: + - "@sahuno" +maintainers: + - "@sahuno" diff --git a/modules/nf-core/modkit/extract/full/tests/main.nf.test b/modules/nf-core/modkit/extract/full/tests/main.nf.test new file mode 100644 index 000000000000..d6a041fc47f3 --- /dev/null +++ b/modules/nf-core/modkit/extract/full/tests/main.nf.test @@ -0,0 +1,72 @@ +nextflow_process { + + name "Test Process MODKIT_EXTRACT_FULL" + script "../main.nf" + process "MODKIT_EXTRACT_FULL" + config "./nextflow.config" + + tag "modules" + tag "modules_nfcore" + tag "modkit" + tag "modkit/extract" + tag "modkit/extract/full" + + test("homo sapiens - nanopore modbam - stub") { + + options "-stub" + + when { + process { + """ + input[0] = [ + [ id: 'test' ], + file(params.modules_testdata_base_path + 'genomics/homo_sapiens/nanopore/bam/test.sorted.phased.bam', checkIfExists: true), + file(params.modules_testdata_base_path + 'genomics/homo_sapiens/nanopore/bam/test.sorted.phased.bam.bai', checkIfExists: true) + ] + input[1] = [ + [ id: 'genome' ], + file(params.modules_testdata_base_path + 'genomics/homo_sapiens/genome/genome.fasta', checkIfExists: true), + file(params.modules_testdata_base_path + 'genomics/homo_sapiens/genome/genome.fasta.fai', checkIfExists: true) + ] + """ + } + } + + then { + assertAll( + { assert process.success }, + { assert snapshot(process.out).match() } + ) + } + } + + test("homo sapiens - nanopore modbam") { + + when { + process { + """ + input[0] = [ + [ id: 'test' ], + file(params.modules_testdata_base_path + 'genomics/homo_sapiens/nanopore/bam/test.sorted.phased.bam', checkIfExists: true), + file(params.modules_testdata_base_path + 'genomics/homo_sapiens/nanopore/bam/test.sorted.phased.bam.bai', checkIfExists: true) + ] + input[1] = [ + [ id: 'genome' ], + file(params.modules_testdata_base_path + 'genomics/homo_sapiens/genome/genome.fasta', checkIfExists: true), + file(params.modules_testdata_base_path + 'genomics/homo_sapiens/genome/genome.fasta.fai', checkIfExists: true) + ] + """ + } + } + + then { + assertAll( + { assert process.success }, + { assert process.out.tsv }, + { assert path(process.out.tsv[0][1]).exists() }, + { assert path(process.out.tsv[0][1]).size() > 0 }, + { assert snapshot(process.out).match() } + ) + } + } +} diff --git a/modules/nf-core/modkit/extract/full/tests/main.nf.test.snap b/modules/nf-core/modkit/extract/full/tests/main.nf.test.snap new file mode 100644 index 000000000000..3d0bea22e28b --- /dev/null +++ b/modules/nf-core/modkit/extract/full/tests/main.nf.test.snap @@ -0,0 +1,96 @@ +{ + "homo sapiens - nanopore modbam": { + "content": [ + { + "0": [ + [ + { + "id": "test" + }, + "test.tsv:md5,8300986c98d1b67973439ced4e7f233c" + ] + ], + "1": [ + + ], + "2": [ + [ + "MODKIT_EXTRACT_FULL", + "modkit", + "0.6.1" + ] + ], + "log": [ + + ], + "tsv": [ + [ + { + "id": "test" + }, + "test.tsv:md5,8300986c98d1b67973439ced4e7f233c" + ] + ], + "versions_modkit": [ + [ + "MODKIT_EXTRACT_FULL", + "modkit", + "0.6.1" + ] + ] + } + ], + "timestamp": "2026-04-23T22:03:49.629847264", + "meta": { + "nf-test": "0.9.5", + "nextflow": "25.04.6" + } + }, + "homo sapiens - nanopore modbam - stub": { + "content": [ + { + "0": [ + [ + { + "id": "test" + }, + "test.tsv:md5,d41d8cd98f00b204e9800998ecf8427e" + ] + ], + "1": [ + + ], + "2": [ + [ + "MODKIT_EXTRACT_FULL", + "modkit", + "0.6.1" + ] + ], + "log": [ + + ], + "tsv": [ + [ + { + "id": "test" + }, + "test.tsv:md5,d41d8cd98f00b204e9800998ecf8427e" + ] + ], + "versions_modkit": [ + [ + "MODKIT_EXTRACT_FULL", + "modkit", + "0.6.1" + ] + ] + } + ], + "timestamp": "2026-04-23T22:03:35.292337916", + "meta": { + "nf-test": "0.9.5", + "nextflow": "25.04.6" + } + } +} \ No newline at end of file diff --git a/modules/nf-core/modkit/extract/full/tests/nextflow.config b/modules/nf-core/modkit/extract/full/tests/nextflow.config new file mode 100644 index 000000000000..aa9b6c33b5db --- /dev/null +++ b/modules/nf-core/modkit/extract/full/tests/nextflow.config @@ -0,0 +1,5 @@ +process { + withName: 'MODKIT_EXTRACT_FULL' { + ext.args = '' + } +} From e79e918bc1caedb28643d0ef2366b73635726a38 Mon Sep 17 00:00:00 2001 From: sahuno Date: Sun, 6 Sep 2026 12:23:43 -0400 Subject: [PATCH 2/3] refactor(modkit/extractfull): rename from modkit/extract/full nf-core module names must be or / (two levels max); `modkit/extract/full` failed the `main_nf_module_granularity` lint check. Renamed directory, process name (MODKIT_EXTRACTFULL), meta.yml name and nf-test tags accordingly. Co-Authored-By: Claude Opus 5 (1M context) Claude-Session: https://claude.ai/code/session_01E7RSvpouxbMBdimYSwJ5ZP --- .../modkit/{extract/full => extractfull}/environment.yml | 0 .../nf-core/modkit/{extract/full => extractfull}/main.nf | 2 +- .../nf-core/modkit/{extract/full => extractfull}/meta.yml | 2 +- .../{extract/full => extractfull}/tests/main.nf.test | 6 +++--- .../{extract/full => extractfull}/tests/main.nf.test.snap | 8 ++++---- .../{extract/full => extractfull}/tests/nextflow.config | 2 +- 6 files changed, 10 insertions(+), 10 deletions(-) rename modules/nf-core/modkit/{extract/full => extractfull}/environment.yml (100%) rename modules/nf-core/modkit/{extract/full => extractfull}/main.nf (98%) rename modules/nf-core/modkit/{extract/full => extractfull}/meta.yml (99%) rename modules/nf-core/modkit/{extract/full => extractfull}/tests/main.nf.test (95%) rename modules/nf-core/modkit/{extract/full => extractfull}/tests/main.nf.test.snap (92%) rename modules/nf-core/modkit/{extract/full => extractfull}/tests/nextflow.config (51%) diff --git a/modules/nf-core/modkit/extract/full/environment.yml b/modules/nf-core/modkit/extractfull/environment.yml similarity index 100% rename from modules/nf-core/modkit/extract/full/environment.yml rename to modules/nf-core/modkit/extractfull/environment.yml diff --git a/modules/nf-core/modkit/extract/full/main.nf b/modules/nf-core/modkit/extractfull/main.nf similarity index 98% rename from modules/nf-core/modkit/extract/full/main.nf rename to modules/nf-core/modkit/extractfull/main.nf index 92f5a88039ba..b4279ac8817c 100644 --- a/modules/nf-core/modkit/extract/full/main.nf +++ b/modules/nf-core/modkit/extractfull/main.nf @@ -1,4 +1,4 @@ -process MODKIT_EXTRACT_FULL { +process MODKIT_EXTRACTFULL { tag "$meta.id" label 'process_high' diff --git a/modules/nf-core/modkit/extract/full/meta.yml b/modules/nf-core/modkit/extractfull/meta.yml similarity index 99% rename from modules/nf-core/modkit/extract/full/meta.yml rename to modules/nf-core/modkit/extractfull/meta.yml index 0a2d9fee4039..f14606164acd 100644 --- a/modules/nf-core/modkit/extract/full/meta.yml +++ b/modules/nf-core/modkit/extractfull/meta.yml @@ -1,4 +1,4 @@ -name: modkit_extract_full +name: modkit_extractfull description: | Transform the probabilities from the MM/ML tags in a modBAM into a tab-separated per-read-per-position table. Emits one row for every diff --git a/modules/nf-core/modkit/extract/full/tests/main.nf.test b/modules/nf-core/modkit/extractfull/tests/main.nf.test similarity index 95% rename from modules/nf-core/modkit/extract/full/tests/main.nf.test rename to modules/nf-core/modkit/extractfull/tests/main.nf.test index d6a041fc47f3..f1b0b0e3b5b1 100644 --- a/modules/nf-core/modkit/extract/full/tests/main.nf.test +++ b/modules/nf-core/modkit/extractfull/tests/main.nf.test @@ -1,15 +1,15 @@ nextflow_process { - name "Test Process MODKIT_EXTRACT_FULL" + name "Test Process MODKIT_EXTRACTFULL" script "../main.nf" - process "MODKIT_EXTRACT_FULL" + process "MODKIT_EXTRACTFULL" config "./nextflow.config" tag "modules" tag "modules_nfcore" tag "modkit" tag "modkit/extract" - tag "modkit/extract/full" + tag "modkit/extractfull" test("homo sapiens - nanopore modbam - stub") { diff --git a/modules/nf-core/modkit/extract/full/tests/main.nf.test.snap b/modules/nf-core/modkit/extractfull/tests/main.nf.test.snap similarity index 92% rename from modules/nf-core/modkit/extract/full/tests/main.nf.test.snap rename to modules/nf-core/modkit/extractfull/tests/main.nf.test.snap index 3d0bea22e28b..09140aaa2783 100644 --- a/modules/nf-core/modkit/extract/full/tests/main.nf.test.snap +++ b/modules/nf-core/modkit/extractfull/tests/main.nf.test.snap @@ -15,7 +15,7 @@ ], "2": [ [ - "MODKIT_EXTRACT_FULL", + "MODKIT_EXTRACTFULL", "modkit", "0.6.1" ] @@ -33,7 +33,7 @@ ], "versions_modkit": [ [ - "MODKIT_EXTRACT_FULL", + "MODKIT_EXTRACTFULL", "modkit", "0.6.1" ] @@ -62,7 +62,7 @@ ], "2": [ [ - "MODKIT_EXTRACT_FULL", + "MODKIT_EXTRACTFULL", "modkit", "0.6.1" ] @@ -80,7 +80,7 @@ ], "versions_modkit": [ [ - "MODKIT_EXTRACT_FULL", + "MODKIT_EXTRACTFULL", "modkit", "0.6.1" ] diff --git a/modules/nf-core/modkit/extract/full/tests/nextflow.config b/modules/nf-core/modkit/extractfull/tests/nextflow.config similarity index 51% rename from modules/nf-core/modkit/extract/full/tests/nextflow.config rename to modules/nf-core/modkit/extractfull/tests/nextflow.config index aa9b6c33b5db..448d1b33bc71 100644 --- a/modules/nf-core/modkit/extract/full/tests/nextflow.config +++ b/modules/nf-core/modkit/extractfull/tests/nextflow.config @@ -1,5 +1,5 @@ process { - withName: 'MODKIT_EXTRACT_FULL' { + withName: 'MODKIT_EXTRACTFULL' { ext.args = '' } } From 2d18d3175365c29f0a8c33ba04cc64ff11b8c65b Mon Sep 17 00:00:00 2001 From: Samuel Ahuno Date: Wed, 9 Sep 2026 14:11:21 -0400 Subject: [PATCH 3/3] fix(modkit/extractfull): sanitizeOutput snapshots + bump ont-modkit to 0.6.4 Ports the review changes from #11286 to this module. - Snapshot via `sanitizeOutput(process.out)` with `assert process.success` outside `assertAll`, so a tool failure fails fast rather than reporting a snapshot mismatch against empty output. Requires nft-utils 1.x, which is why master is merged in first. - Drop the redundant exists/size asserts on the non-stub test; the snapshot already covers the tsv and an empty file is caught by the md5 lint check. - Remove tests/nextflow.config (it only set an empty ext.args) and the `config` directive that loaded it. - Bump ont-modkit 0.6.1 -> 0.6.4 (clears the `bioconda_latest` lint warning); container tag `0.6.4--h7f49ad2_0` verified on the Galaxy depot and quay.io. Non-stub tsv md5 is unchanged at 8300986c98d1b67973439ced4e7f233c across both the config removal and the version bump. Co-Authored-By: Claude Opus 5 (1M context) Claude-Session: https://claude.ai/code/session_01JAsT7dzCcLSicJxFRWJozr --- .../modkit/extractfull/environment.yml | 2 +- modules/nf-core/modkit/extractfull/main.nf | 4 +- .../modkit/extractfull/tests/main.nf.test | 12 ++--- .../extractfull/tests/main.nf.test.snap | 48 +++---------------- .../modkit/extractfull/tests/nextflow.config | 5 -- 5 files changed, 13 insertions(+), 58 deletions(-) delete mode 100644 modules/nf-core/modkit/extractfull/tests/nextflow.config diff --git a/modules/nf-core/modkit/extractfull/environment.yml b/modules/nf-core/modkit/extractfull/environment.yml index dac7b506e89f..51282bc85516 100644 --- a/modules/nf-core/modkit/extractfull/environment.yml +++ b/modules/nf-core/modkit/extractfull/environment.yml @@ -4,4 +4,4 @@ channels: - conda-forge - bioconda dependencies: - - "bioconda::ont-modkit=0.6.1" + - "bioconda::ont-modkit=0.6.4" diff --git a/modules/nf-core/modkit/extractfull/main.nf b/modules/nf-core/modkit/extractfull/main.nf index b4279ac8817c..68564acbb60c 100644 --- a/modules/nf-core/modkit/extractfull/main.nf +++ b/modules/nf-core/modkit/extractfull/main.nf @@ -4,8 +4,8 @@ process MODKIT_EXTRACTFULL { conda "${moduleDir}/environment.yml" container "${ workflow.containerEngine in ['singularity', 'apptainer'] && !task.ext.singularity_pull_docker_container ? - 'https://depot.galaxyproject.org/singularity/ont-modkit:0.6.1--hcdda2d0_0': - 'quay.io/biocontainers/ont-modkit:0.6.1--hcdda2d0_0' }" + 'https://depot.galaxyproject.org/singularity/ont-modkit:0.6.4--h7f49ad2_0': + 'quay.io/biocontainers/ont-modkit:0.6.4--h7f49ad2_0' }" input: tuple val(meta), path(bam), path(bai) diff --git a/modules/nf-core/modkit/extractfull/tests/main.nf.test b/modules/nf-core/modkit/extractfull/tests/main.nf.test index f1b0b0e3b5b1..bf022c95fff1 100644 --- a/modules/nf-core/modkit/extractfull/tests/main.nf.test +++ b/modules/nf-core/modkit/extractfull/tests/main.nf.test @@ -3,7 +3,6 @@ nextflow_process { name "Test Process MODKIT_EXTRACTFULL" script "../main.nf" process "MODKIT_EXTRACTFULL" - config "./nextflow.config" tag "modules" tag "modules_nfcore" @@ -33,9 +32,9 @@ nextflow_process { } then { + assert process.success assertAll( - { assert process.success }, - { assert snapshot(process.out).match() } + { assert snapshot(sanitizeOutput(process.out)).match() } ) } } @@ -60,12 +59,9 @@ nextflow_process { } then { + assert process.success assertAll( - { assert process.success }, - { assert process.out.tsv }, - { assert path(process.out.tsv[0][1]).exists() }, - { assert path(process.out.tsv[0][1]).size() > 0 }, - { assert snapshot(process.out).match() } + { assert snapshot(sanitizeOutput(process.out)).match() } ) } } diff --git a/modules/nf-core/modkit/extractfull/tests/main.nf.test.snap b/modules/nf-core/modkit/extractfull/tests/main.nf.test.snap index 09140aaa2783..5822f7992b76 100644 --- a/modules/nf-core/modkit/extractfull/tests/main.nf.test.snap +++ b/modules/nf-core/modkit/extractfull/tests/main.nf.test.snap @@ -2,24 +2,6 @@ "homo sapiens - nanopore modbam": { "content": [ { - "0": [ - [ - { - "id": "test" - }, - "test.tsv:md5,8300986c98d1b67973439ced4e7f233c" - ] - ], - "1": [ - - ], - "2": [ - [ - "MODKIT_EXTRACTFULL", - "modkit", - "0.6.1" - ] - ], "log": [ ], @@ -35,38 +17,20 @@ [ "MODKIT_EXTRACTFULL", "modkit", - "0.6.1" + "0.6.4" ] ] } ], - "timestamp": "2026-04-23T22:03:49.629847264", + "timestamp": "2026-09-09T14:11:06.734193995", "meta": { "nf-test": "0.9.5", - "nextflow": "25.04.6" + "nextflow": "25.10.4" } }, "homo sapiens - nanopore modbam - stub": { "content": [ { - "0": [ - [ - { - "id": "test" - }, - "test.tsv:md5,d41d8cd98f00b204e9800998ecf8427e" - ] - ], - "1": [ - - ], - "2": [ - [ - "MODKIT_EXTRACTFULL", - "modkit", - "0.6.1" - ] - ], "log": [ ], @@ -82,15 +46,15 @@ [ "MODKIT_EXTRACTFULL", "modkit", - "0.6.1" + "0.6.4" ] ] } ], - "timestamp": "2026-04-23T22:03:35.292337916", + "timestamp": "2026-09-09T14:11:01.150191738", "meta": { "nf-test": "0.9.5", - "nextflow": "25.04.6" + "nextflow": "25.10.4" } } } \ No newline at end of file diff --git a/modules/nf-core/modkit/extractfull/tests/nextflow.config b/modules/nf-core/modkit/extractfull/tests/nextflow.config deleted file mode 100644 index 448d1b33bc71..000000000000 --- a/modules/nf-core/modkit/extractfull/tests/nextflow.config +++ /dev/null @@ -1,5 +0,0 @@ -process { - withName: 'MODKIT_EXTRACTFULL' { - ext.args = '' - } -}