You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The command nf-core pipelines create-params-file is intended to generate a YAML-formatted file that can be used as a parameters file for Nextflow execution (-params-file argument). However, the generated file incorrectly uses the format "name = value" instead of the correct YAML syntax "name: value". This causes issues when trying to use the file as a valid input for Nextflow.
Command used and terminal output
$ nf-core pipelines create-params-file --output ./nf-params.yml nf-core/sarekHere are the first lines of the nf-params.yml output:===## ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~## nf-core/sarek 3.5.0## ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~## This is an example parameter file to pass to the `-params-file` option## of nextflow run with the nf-core/sarek pipeline.#### Uncomment lines with a single '#' if you want to pass the parameter to## the pipeline.## -----------------------------------------------------------------------------## =============================================================================## Input/output options## =============================================================================## Define where the pipeline should find input data and save output data.## (1 hidden parameters are not shown)## -----------------------------------------------------------------------------## input## -----------------------------------------------------------------------------## Path to comma-separated file containing information about the samples## in the experiment.## Type: string## -----------------------------------------------------------------------------
# input = null## -----------------------------------------------------------------------------## step## -----------------------------------------------------------------------------## Starting step## Type: string## Required## -----------------------------------------------------------------------------
# step = "mapping"
System information
Nextflow 24.10.4
Nf-core current development version (commit 639e419)
python 3.11.11
linux OS (Ubuntu)
The text was updated successfully, but these errors were encountered:
Description of the bug
The command
nf-core pipelines create-params-file
is intended to generate a YAML-formatted file that can be used as a parameters file for Nextflow execution (-params-file
argument). However, the generated file incorrectly uses the format"name = value"
instead of the correct YAML syntax"name: value"
. This causes issues when trying to use the file as a valid input for Nextflow.Command used and terminal output
System information
The text was updated successfully, but these errors were encountered: