Skip to content

Commit

Permalink
Docker Hub -> ECR
Browse files Browse the repository at this point in the history
  • Loading branch information
DOH-JDJ0303 committed Jun 25, 2024
1 parent ce9405b commit f8424bf
Show file tree
Hide file tree
Showing 7 changed files with 33 additions and 81 deletions.
37 changes: 30 additions & 7 deletions conf/modules.config
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ process {
saveAs: { filename -> filename.equals('versions.yml') ? null : filename }
]
withName: TAR2REFS {
container = 'docker.io/jdj0303/vaper-base:1.0'
container = 'public.ecr.aws/o8h2f0o1/vaper-base:1.0'
publishDir = [
path: { "${params.outdir}/" },
pattern: "none"
Expand Down Expand Up @@ -73,7 +73,7 @@ process {
]
}
withName: 'FASTP2TBL' {
container = 'docker.io/jdj0303/vaper-base:1.0'
container = 'public.ecr.aws/o8h2f0o1/vaper-base:1.0'
ext.args = ""
ext.when = { }
publishDir = [
Expand Down Expand Up @@ -147,7 +147,7 @@ process {
]
}
withName: 'SUMMARIZE_TAXA' {
container = 'docker.io/jdj0303/vaper-base:1.0'
container = 'public.ecr.aws/o8h2f0o1/vaper-base:1.0'
ext.args = ""
ext.when = { }
publishDir = [
Expand All @@ -163,6 +163,29 @@ process {
]
]
}
withName: 'SM2REFS' {
container = 'public.ecr.aws/o8h2f0o1/vaper-base:1.0'
ext.args = ""
ext.when = { }
publishDir = [
[
path: { "${params.outdir}/${meta.id}/taxonomy/" },
pattern: "*.csv",
mode: 'copy'
],
]
}
withName: 'NCBI_DATASETS' {
ext.args = ""
ext.when = { }
publishDir = [
[
path: { "${params.outdir}/${meta.id}/taxonomy/" },
pattern: "*.csv",
mode: 'copy'
],
]
}
withName: 'BWA_MEM' {
ext.args = ""
ext.when = { }
Expand Down Expand Up @@ -236,7 +259,7 @@ process {
]
}
withName: 'NEXTCLADE_CONFIG' {
container = 'docker.io/jdj0303/vaper-base:1.0'
container = 'public.ecr.aws/o8h2f0o1/vaper-base:1.0'
ext.args = ""
ext.when = { }
publishDir = [
Expand All @@ -247,7 +270,7 @@ process {
]
}
withName: 'SUMMARYLINE' {
container = 'docker.io/jdj0303/vaper-base:1.0'
container = 'public.ecr.aws/o8h2f0o1/vaper-base:1.0'
ext.args = ""
ext.when = { }
publishDir = [
Expand All @@ -257,7 +280,7 @@ process {
]
}
withName: 'COMBINE_SUMMARYLINES' {
container = 'docker.io/jdj0303/vaper-base:1.0'
container = 'public.ecr.aws/o8h2f0o1/vaper-base:1.0'
ext.args = ""
ext.when = { }
publishDir = [
Expand Down Expand Up @@ -304,7 +327,7 @@ process {
]
}
withName: 'REPORT' {
container = 'docker.io/jdj0303/vaper-base:1.0'
container = 'public.ecr.aws/o8h2f0o1/vaper-base:1.0'
ext.args = ""
ext.when = { }
publishDir = [
Expand Down
2 changes: 1 addition & 1 deletion modules/local/irma.nf
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ process IRMA {
label 'process_high'
stageInMode 'copy'

container "docker.io/staphb/irma:1.1.4"
container "public.ecr.aws/o8h2f0o1/irma:1.1.4"

input:
tuple val(meta), path(refs), path(reads)
Expand Down
2 changes: 1 addition & 1 deletion modules/local/ivar_consensus.nf
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ process IVAR_CONSENSUS {
label 'process_high'

conda "bioconda::ivar"
container "staphb/ivar:1.4.2"
container "public.ecr.aws/o8h2f0o1/ivar:1.4.2"

input:
tuple val(meta), val(ref_id), path(bam)
Expand Down
48 changes: 0 additions & 48 deletions modules/local/kraken2.nf

This file was deleted.

1 change: 1 addition & 0 deletions modules/local/ncbi-datasets.nf
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
process NCBI_DATASETS {
tag "${ref_id}"
label 'process_low'
container 'public.ecr.aws/o8h2f0o1/ncbi-datasets:16.15.0'

input:
tuple val(ref_id), val(accession)
Expand Down
22 changes: 0 additions & 22 deletions modules/local/samtoolstats2tbl.nf

This file was deleted.

2 changes: 0 additions & 2 deletions modules/local/sm2refs.nf
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
process SM2REFS {
label 'process_low'

container 'docker.io/jdj0303/vaper-base:beta'

input:
tuple val(meta), path(sm_species)

Expand Down

0 comments on commit f8424bf

Please sign in to comment.