Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add eval output type (nextflow-io#4493)
This PR introduces the output `eval` type that allows the definition of a script expression that needs to be computed in the script context to evaluate the output value to be emitted. An example would be: ``` process someTask { output: eval 'bash --version' ''' some-command --here ''' } ``` Signed-off-by: Paolo Di Tommaso <paolo.ditommaso@gmail.com> Signed-off-by: Ben Sherman <bentshermann@gmail.com> Co-authored-by: Ben Sherman <bentshermann@gmail.com> Co-authored-by: Dr Marco Claudio De La Pierre <marco.delapierre@gmail.com>
- Loading branch information