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
Hi, with the new 1.0.2 release, I'm now getting an highlighted error when using if () {} block statement in config files.
if () {}
if (params.outdir){ process { withName: 'bam2bigwig' { publishDir = [ [ path: { "${params.outdir}/bigwig" }, mode: params.publish_dir_mode, ] ] } } }
The if is underlined in red with the error: Unexpected input: 'if'
if
Unexpected input: 'if'
No error
The text was updated successfully, but these errors were encountered:
If statements are not supported in the strict config syntax: https://nextflow.io/docs/latest/vscode.html#configuration-syntax
These language server errors will eventually become errors in Nextflow
Sorry, something went wrong.
No branches or pull requests
Hi, with the new 1.0.2 release, I'm now getting an highlighted error when using
if () {}
block statement in config files.Issue:
The
if
is underlined in red with the error:Unexpected input: 'if'
Expected behavior:
No error
The text was updated successfully, but these errors were encountered: