Skip to content

Commit

Permalink
Merge pull request #4 from getwilds/dockerhub
Browse files Browse the repository at this point in the history
Switching images from GHCR to DockerHub
  • Loading branch information
tefirman authored Jul 8, 2024
2 parents 2c7b760 + dc08a8e commit 7b2fa56
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion helloDockerHostname/helloDockerHostname.wdl
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version 1.0
#### WORKFLOW DEFINITION
workflow HelloSingularityHostname {
workflow HelloDockerHostname {
call Hostname {
}

Expand Down Expand Up @@ -32,6 +32,7 @@ task Hostname {
cpu: 1
memory: "1 GB"
docker: "ubuntu:latest"
# modules: "Python/3.7.4-foss-2019b-fh1"
}

parameter_meta {
Expand Down
6 changes: 3 additions & 3 deletions variantCalling/variantCalling.wdl
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,9 @@ workflow PanelBwaGatk4Annovar {
ReferenceData reference_genome
}

String gatk_docker = "ghcr.io/getwilds/gatk:4.3.0.0"
String annovar_docker = "ghcr.io/getwilds/annovar:${reference_genome.ref_name}"
String bwa_docker = "ghcr.io/getwilds/bwa:0.7.17"
String gatk_docker = "getwilds/gatk:4.3.0.0"
String annovar_docker = "getwilds/annovar:${reference_genome.ref_name}"
String bwa_docker = "getwilds/bwa:0.7.17"

scatter (sample in sample_batch){
File bam = sample.bam_file
Expand Down

0 comments on commit 7b2fa56

Please sign in to comment.