Skip to content
New issue

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

Fix strict mode docs #4150

Merged
merged 1 commit into from
Aug 3, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions docs/config.md
Original file line number Diff line number Diff line change
Expand Up @@ -1713,11 +1713,11 @@ Some features can be enabled using the `nextflow.enable` and `nextflow.preview`

- When merging params from a config file with params from the command line, Nextflow will fail if a param is specified from both sources but with different types

- When using the `join` operator, the `failOnDuplicate` option is `true` by default
- When using the `join` operator, the `failOnDuplicate` option is `true` regardless of any user setting

- When using the `join` operator, the `failOnMismatch` option is `true` by default (unless `remainder` is also `true`)
- When using the `join` operator, the `failOnMismatch` option is `true` (unless `remainder` is also `true`) regardless of any user setting

- When using the `publishDir` process directive, the `failOnError` option is `true` by default
- When using the `publishDir` process directive, the `failOnError` option is `true` regardless of any user setting

- In a process definition, Nextflow will fail if an input or output tuple has only one element

Expand Down
Loading