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
!
The nextflow check against manifest.version doesn't actually stop the pipeline with a helpful error message if a users version doesn't use the specify version unless ! is specified before the >=, as described here: https://www.nextflow.io/docs/latest/config.html?highlight=manifest#nextflow-version
manifest.version
>=
Howeve linting fails if !, is included.
It would be nice if ! would also be accepted by linting on this line (thanks for @drpatelh for pointing towards it):
tools/nf_core/lint.py
Line 467 in 9e33e7f
(Note: I'm not familar with python and don't have much time atm so not comfortable making a PR myself yet).
Current workaround, add the following to main.nf
https://www.nextflow.io/docs/latest/metadata.html#nextflow-metadata
The text was updated successfully, but these errors were encountered:
Fixed 🎉
Sorry, something went wrong.
No branches or pull requests
Problem
The nextflow check against
manifest.version
doesn't actually stop the pipeline with a helpful error message if a users version doesn't use the specify version unless!
is specified before the>=
, as described here: https://www.nextflow.io/docs/latest/config.html?highlight=manifest#nextflow-versionHoweve linting fails if
!
, is included.Solution
It would be nice if
!
would also be accepted by linting on this line (thanks for @drpatelh for pointing towards it):tools/nf_core/lint.py
Line 467 in 9e33e7f
(Note: I'm not familar with python and don't have much time atm so not comfortable making a PR myself yet).
Alternative
Current workaround, add the following to main.nf
https://www.nextflow.io/docs/latest/metadata.html#nextflow-metadata
The text was updated successfully, but these errors were encountered: