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
#5661 doesn't fix kebab-case parameters specified in -params-file.
-params-file
regression described in #5655 applies to declarations in params-file, which, per documentation, should be equivalent to parameters passed in cli.
params-file
Parameters defined in the file are equivalent to specifying them directly on the command line
test.nf:
params.longParam = "unchanged" workflow { log.info "${params}" log.info "${params.longParam}" }
test.yaml:
long-param: kebab
test2.yaml:
longParam: camel
# nextflow run test.nf --long-param kebab [long-param:kebab, longParam:kebab] kebab # nextflow run test.nf --longParam camel [longParam:camel, long-param:camel] camel # nextflow run test.nf -params-file test.yaml [long-param:kebab, longParam:kebab] kebab # nextflow run test.nf -params-file test2.yaml [longParam:camel, long-param:camel] camel
# nextflow run test.nf --long-param kebab [longParam:kebab] kebab # nextflow run test.nf --longParam camel [longParam:camel] camel # nextflow run test.nf -params-file test.yaml [long-param:kebab, longParam:unchanged] unchanged # nextflow run test.nf -params-file test2.yaml [longParam:camel] camel
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Bug report
#5661 doesn't fix kebab-case parameters specified in
-params-file
.Expected behavior and actual behavior
regression described in #5655 applies to declarations in
params-file
, which, per documentation, should be equivalent to parameters passed in cli.Steps to reproduce the problem
test.nf:
test.yaml:
test2.yaml:
Program output
23.10.1
24.10.5
Environment
The text was updated successfully, but these errors were encountered: