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
With the update to Nextflow version 22.10.2, it looks like having something like:
include { val_process; val_process as val_process_output } from './validation.nf'
gives a WARN message that val_process_output is defined more than once.
val_process_output
To fix, each process instance needs to be named:
include { val_process as val_process_input; val_process as val_process_output } from './validation.nf'
The text was updated successfully, but these errors were encountered:
jarbet
No branches or pull requests
With the update to Nextflow version 22.10.2, it looks like having something like:
gives a WARN message that
val_process_output
is defined more than once.To fix, each process instance needs to be named:
The text was updated successfully, but these errors were encountered: