-
Notifications
You must be signed in to change notification settings - Fork 192
New issue
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
Add singularity.registry = 'quay.io' to pipeline template #2305
Conversation
Codecov Report
@@ Coverage Diff @@
## dev #2305 +/- ##
==========================================
+ Coverage 72.84% 72.90% +0.05%
==========================================
Files 78 78
Lines 8750 8761 +11
==========================================
+ Hits 6374 6387 +13
+ Misses 2376 2374 -2
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm happy with the code but what is the consensus on the Nextflow version? It seems very recent to me.
@@ -226,7 +227,7 @@ manifest { | |||
homePage = 'https://github.com/{{ name }}' | |||
description = """{{ description }}""" | |||
mainScript = 'main.nf' | |||
nextflowVersion = '!>=22.10.1' | |||
nextflowVersion = '!>=23.04.0' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
How about a compromise of not making it a !>=
but instead just a >=
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This might break if an older version of NF is used in a pipeline that actually requires singularity.registry
?
Closes #2303
See nf-core/modules#3499