Skip to content

Commit

Permalink
Trying custom images
Browse files Browse the repository at this point in the history
  • Loading branch information
harmonbhasin committed Nov 19, 2024
1 parent fbb9d0b commit 65e5333
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
9 changes: 7 additions & 2 deletions configs/containers.config
Original file line number Diff line number Diff line change
@@ -1,10 +1,15 @@
// Specify Docker containers for workflow processes
process {
withLabel: base {
// container = "eclipse/alpine_jdk8:latest"
container = "community.wave.seqera.io/library/curl:8.10.1--43150f2d543ef413"
container = "eclipse/alpine_jdk8:latest"
// NB: As of 2024-07-01, no more specific tag available
}
withLabel: curl {
container = "community.wave.seqera.io/library/curl:8.10.1--43150f2d543ef413"
}
withLabel: unzip {
container = "community.wave.seqera.io/library/unzip:6.0--0e729f0c20458893"
}
withLabel: MultiQC {
// NB: As of 2024-07-01, newer versions currently cause errors
container = "multiqc/multiqc:v1.21"
Expand Down
2 changes: 1 addition & 1 deletion modules/local/downloadVirusHostDB/main.nf
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Download entire VirusHostDB
process DOWNLOAD_VIRUS_HOST_DB {
label "single"
label "base"
label "curl"
input:
val(virus_host_db_url)
output:
Expand Down
2 changes: 1 addition & 1 deletion modules/local/extractNcbiTaxonomy/main.nf
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Extract NCBI taxonomy archive and access nodes and names files
process EXTRACT_NCBI_TAXONOMY {
label "base"
label "unzip"
label "single"
input:
path(taxonomy_zip)
Expand Down

0 comments on commit 65e5333

Please sign in to comment.