Skip to content

Commit

Permalink
fix(wdl): Fix docker image versions
Browse files Browse the repository at this point in the history
  • Loading branch information
lrvdijk committed Jan 9, 2025
1 parent 5058090 commit f0278e2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions wdl/tasks/alignment/minimap2.wdl
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ task IndexWithMinimap2 {
boot_disk_gb: 20,
preemptible_tries: 3,
max_retries: 2,
docker: "us-central1-docker.pkg.dev/broad-dsp-lrma/pangenome-pipelines/minimap2:latest"
docker: "us-central1-docker.pkg.dev/broad-dsp-lrma/pangenome-pipelines/minimap2:main"
}
RuntimeAttr runtime_attr = select_first([runtime_attr_override, default_attr])
Expand Down Expand Up @@ -78,7 +78,7 @@ task Minimap2WithIx {
boot_disk_gb: 20,
preemptible_tries: 3,
max_retries: 2,
docker: "us-central1-docker.pkg.dev/broad-dsp-lrma/pangenome-pipelines/minimap2:latest"
docker: "us-central1-docker.pkg.dev/broad-dsp-lrma/pangenome-pipelines/minimap2:main"
}
RuntimeAttr runtime_attr = select_first([runtime_attr_override, default_attr])
Expand Down
2 changes: 1 addition & 1 deletion wdl/tasks/alignment/samtools.wdl
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ task Merge {
boot_disk_gb: 20,
preemptible_tries: 3,
max_retries: 2,
docker: "us-central1-docker.pkg.dev/broad-dsp-lrma/pangenome-pipelines/minimap2:latest"
docker: "us-central1-docker.pkg.dev/broad-dsp-lrma/pangenome-pipelines/minimap2:main"
}
RuntimeAttr runtime_attr = select_first([runtime_attr_override, default_attr])
Expand Down

0 comments on commit f0278e2

Please sign in to comment.