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
We should have a flag to ignore if a resource exists. This is similar to the overwrite: true behaviour but ignoring instead of overwriting.
overwrite: true
We could replace the on_exists flag with a different flag for how to respond when a resource exists:
on_exists
If a resource exists, overwrite:
pipeline: name: hello-world pipeline: github.com/nextflow-io/hello on_exists: overwrite
Which is equivalent to:
pipeline: name: hello-world pipeline: github.com/nextflow-io/hello on_exists: true
If a resource exists, ignore:
pipeline: name: hello-world pipeline: github.com/nextflow-io/hello on_exists: ignore
We could extend this to mean other behaviours through time.
The text was updated successfully, but these errors were encountered:
fail
ignore
overwrite
Successfully merging a pull request may close this issue.
We should have a flag to ignore if a resource exists. This is similar to the
overwrite: true
behaviour but ignoring instead of overwriting.We could replace the
on_exists
flag with a different flag for how to respond when a resource exists:If a resource exists, overwrite:
Which is equivalent to:
If a resource exists, ignore:
We could extend this to mean other behaviours through time.
The text was updated successfully, but these errors were encountered: