What happened to TraceFileObserver.DEF_FILE_NAME ? #6726
Replies: 2 comments 2 replies
-
|
The default file name was moved to TraceConfig in #6271 , which was some tech debt cleanup that we did for the config system. So you can likely access it via |
Beta Was this translation helpful? Give feedback.
-
|
@bentsherman After some tinkering, I found that For nextflow <25.10:
For nextflow >=25.10:
It would be nice if there was a way to access the trace filename that worked with newer or older nextflow versions. The problem I'm having with |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Hi,
Sometime between v25.04.8 and v25.10.0, the class field
TraceFileObserver.DEF_FILE_NAMEwent away. This is how it looked in v24.05.8:I haven't been able to figure our exactly the PR or commit when this happened. It's here in v24.05.8 and gone in v25.10.0. I can see in the release notes for 25.07.0-edge, it says:
I thought that might have something to do with it, but this merge commit didn't actually remove
DEF_FILE_NAME.Anyway, this removal broke a custom
workflow.onCompleteconfig that we use. One of the lines in the script tries to copy the trace file from its location (in the working dir where nf was run) to the output dir. How can we access the trace filename, now that DEF_FILE_NAME is gone?Beta Was this translation helpful? Give feedback.
All reactions