Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions modules/nf-core/clair3/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,7 @@ process CLAIR3 {
label 'process_high'

conda "${moduleDir}/environment.yml"
container "${ workflow.containerEngine in ['singularity', 'apptainer'] && !task.ext.singularity_pull_docker_container ?
'docker.io/hkubal/clair3:v2.0.0' :
'docker.io/hkubal/clair3:v2.0.0' }"
container "docker.io/hkubal/clair3:v2.0.0"

input:
tuple val(meta), path(bam), path(bai), val(packaged_model), path(user_model), val(platform)
Expand Down
1 change: 0 additions & 1 deletion modules/nf-core/traitar/pfamget/environment.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
---
# yaml-language-server: $schema=https://raw.githubusercontent.com/nf-core/modules/master/modules/environment-schema.json
# yaml-language-server: $schema=https://raw.githubusercontent.com/nf-core/modules/master/modules/environment-schema.json
channels:
- conda-forge
- bioconda
Expand Down
2 changes: 1 addition & 1 deletion modules/nf-core/traitar/pfamget/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ process TRAITAR_PFAMGET {

conda "${moduleDir}/environment.yml"
container "${ workflow.containerEngine in ['singularity', 'apptainer'] && !task.ext.singularity_pull_docker_container ?
'community.wave.seqera.io/library/hmmer_prodigal_pandas_parallel_pruned:ccae2eabc2a54ac8' :
'oras://community.wave.seqera.io/library/hmmer_prodigal_pandas_parallel_pruned:9b929a08d061b63d' :
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

should this be swapped to https?

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I couldn't figure out how to get that from the wave-cli :|
We have a lot of oras links in the repository already.

'community.wave.seqera.io/library/hmmer_prodigal_pandas_parallel_pruned:ccae2eabc2a54ac8' }"

output:
Expand Down
2 changes: 1 addition & 1 deletion modules/nf-core/traitar/run/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ process TRAITAR {

conda "${moduleDir}/environment.yml"
container "${ workflow.containerEngine in ['singularity', 'apptainer'] && !task.ext.singularity_pull_docker_container ?
'community.wave.seqera.io/library/hmmer_prodigal_pandas_parallel_pruned:ccae2eabc2a54ac8' :
'oras://community.wave.seqera.io/library/hmmer_prodigal_pandas_parallel_pruned:9b929a08d061b63d' :
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

same here

'community.wave.seqera.io/library/hmmer_prodigal_pandas_parallel_pruned:ccae2eabc2a54ac8' }"

input:
Expand Down
Loading