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
Hey!
I created a small example here: https://github.com/FriederikeHanssen/mre/tree/dag_conditional
Essentially, whenever there is a conditional execution the DAG is missing one connection it seems:
The DAG of this code snippet:
if(params.echo){ echo = TOUCH(params.echo).file } else { echo = DEFAULT().file } APPEND(echo)
renders to:
I would expect a connection between the process TOUCH and APPEND as well.
TOUCH
APPEND
Nextflow plugin Version: 1.0.3
The text was updated successfully, but these errors were encountered:
Related to #88
For what it's worth, you can do this:
echo = params.echo ? TOUCH(params.echo).file : DEFAULT().file
And I think it will render correctly. But it's probably only feasible for simple cases
Sorry, something went wrong.
No branches or pull requests
Hey!
I created a small example here: https://github.com/FriederikeHanssen/mre/tree/dag_conditional
Essentially, whenever there is a conditional execution the DAG is missing one connection it seems:
The DAG of this code snippet:
renders to:
I would expect a connection between the process
TOUCH
andAPPEND
as well.Nextflow plugin Version: 1.0.3
The text was updated successfully, but these errors were encountered: