-
Notifications
You must be signed in to change notification settings - Fork 705
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
Update modules that depend on contains using the (deprecated) V1 manifest style to V2 manifest containers #1140
Comments
Bumping RSeQC: nf-core/modules#4601 |
Older V1 containers can be discovered with nextflow inspect nf-core/rnaseq -r master -profile test -format json > config.json
for URL in $(jq -r '.processes | .[] | .container' config.json); do
docker manifest inspect $URL > /dev/null 2> >(grep -i 'unsupported manifest media') || echo $URL
done | sort | uniq Current list (for
|
As you rightly pointed out @robsyme we need to update the following containers;
Given that these nf-core modules are now using nf-test and don't want to include this in the upcoming 3.14.0 release, we can patch these modules with I have noticed some weird issues when bumping RSeqC in the past but I can't remember now so we will have to be a little cautious when doing this and check all of the releveant tests. |
Fixed in #1152 |
I have recently started using nf-core and I think I may have a problem regarding this issue. I have run the following command to build an RRBS analysis pipeline and got an error.
As a result, I get the following error
Finally, thank you very much for your wonderful framework. |
@hiuchi Please raise this on nf-core/methylseq- they will likely need to update their copy of this module |
Description of feature
The 3.12.3 nf-core/rnaseq workflow pulls a few very old containers that use the V1 manifest version. These older style of containers can cause errors when using the
wave.freeze
feature ofnextflow inspect
.These containers can cause the Wave error
The affected processes and containers are:
QUALIMAP_RNASEQ
:biocontainers/qualimap:2.2.2d--1
(4 years old)biocontainers/qualimap:2.3--hdfd78af_0
RSEQC_.*
:biocontainers/rseqc:3.0.1--py37h516909a_1
(4 years old)biocontainers/rseqc:5.0.3--py39hf95cd2a_0
The text was updated successfully, but these errors were encountered: