-
Notifications
You must be signed in to change notification settings - Fork 714
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Use eval
to collect version
#5834
Comments
Did you mean 24.04 ? |
See comment: #4517 (comment) |
Does this help fix #6696 ? |
An example that might need to be taken into consideration is that, in the nf-module for bwa, the command used to retrieve the version information is If the result of the version-retrieving command is pipped into |
Can we set pipefail globally? Is it already done? |
Nextflow
24.02.0-edge
brings with it two new features which should give much cleaner syntax for collecting tool versions: channel topics usingtopic
(see #4517) andeval
. They are designed to work together nicely, but are technically separate features.eval
: https://nextflow.io/docs/latest/process.html#output-type-evaleval
andtopic
: https://nextflow.io/blog/2024/nextflow-2404-highlights.html#process-eval-outputsThe blog post contains a basic example of how this can be used to collect versions:
Needs some thought about how we approach these changes - may be best to do a bulk change everywhere in one go, as it affects multiple code locations (modules and pipelines).
The text was updated successfully, but these errors were encountered: