-
Notifications
You must be signed in to change notification settings - Fork 244
Open
Description
Hi
When using the latest version (1.5.0
) of the nextflow
language server in VS Code, and use it on the sample listed here: https://training.nextflow.io/2.2/basic_training/config/#config-scopes
alpha.x = 1
alpha.y = 'string value..'
beta {
p = 2
q = 'another string ..'
}
I get the following warnings: Unrecognized config option 'alpha.y'nextflow

In the following file I do not get the same warning:
params.x = 1
params.y = 'string value..'
params {
p = 2
q = 'another string ..'
}
This is kind of confusing, as the first snippet is completely valid, but I get the impression that this means custom namespaces are not recommended. My specific use-case is to setup a namespace that contains a bunch of variables that will be re-used and I do not want to use params
for this, as they are not variables given through the CLI or similar.
Let me know if I am completely confused or not.
Metadata
Metadata
Assignees
Labels
No labels