Skip to content

Params override is not honoured  #1792

@pditommaso

Description

@pditommaso

Use the folowing nextflow.config

profiles {
    local {
        params.genome = '/local/genome'
    }

    cloud {
        params.genome = 'gs://genome'
    }
}

then run

nextflow config -profile cloud,local

If prints

params {
   genome = 'gs://genome'
}

Instead of

params {
   genome = '/local/genome'
}

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions