You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Changes to objects passed as input should trigger new runs when using -resume. When changing an object's structure, e.g. putting it in an array, or map, the process uses the cached values from before, rather than executing new runs.
$ nextflow run main.nf N E X T F L O W ~ version 23.10.1Launching `main.nf` [zen_leibniz] DSL2 - revision: eaf2b5bb3dexecutor > local (2)[31/f024e0] process > TASK (2) [100%] 2 of 2 ✔[[id:foo, taxid:632], /workspace/Nextflow_sandbox/work/8e/853bdb1d954eef65d82eb81ba481e1/node_id.txt][[id:bar, taxid:632], /workspace/Nextflow_sandbox/work/31/f024e0f621ef2b27d3567887a7c5d3/node_id.txt]
Run 2: Expect error due to change in input object structure, but uses cached values instead.
$ nextflow run main.nf -resumeN E X T F L O W ~ version 23.10.1Launching `main.nf` [cheesy_allen] DSL2 - revision: 8074d4d3e0[6b/fb2322] process > TASK (1) [100%] 2 of 2, cached: 2 ✔[[id:bar, taxid:632], /workspace/Nextflow_sandbox/work/56/2935d71088d17207dab38381590386/node_id.txt][[id:foo, taxid:632], /workspace/Nextflow_sandbox/work/6b/fb2322b25197873c2aaf6f0c75084e/node_id.txt]
Environment
Nextflow version: 23.10.1
Java version: openjdk 17.0.10-internal 2024-01-16
Operating system: Linux (Gitpod)
Bash version: GNU bash, version 5.1.16(1)-release (x86_64-pc-linux-gnu)
The text was updated successfully, but these errors were encountered:
Bug report
Expected behavior and actual behavior
Changes to objects passed as input should trigger new runs when using
-resume
. When changing an object's structure, e.g. putting it in an array, or map, the process uses the cached values from before, rather than executing new runs.Steps to reproduce the problem
First run:
Changed code (run 2):
Program output
Run 1:
Run 2: Expect error due to change in input object structure, but uses cached values instead.
Environment
The text was updated successfully, but these errors were encountered: