We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
exec
Just an observation, not sure if this is intentional or a known issue, but if you have a Nextflow process like this
process EXEC_FOO { input: tuple val(prefix), val(constant) output: path(outputfile) exec: println ">>> EXEC: ${prefix}, ${constant}" outputfile = new File("${task.workDir}/${prefix}.exec.txt") outputfile.write(constant) }
it does not seem to show up in the legacy manifest JSON output
The text was updated successfully, but these errors were encountered:
Does it appear in the BCO output?
Sorry, something went wrong.
No it does not seem to appear in either. See the results from running the PR #31
No branches or pull requests
Just an observation, not sure if this is intentional or a known issue, but if you have a Nextflow process like this
it does not seem to show up in the legacy manifest JSON output
The text was updated successfully, but these errors were encountered: