Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Switching images from GHCR to DockerHub #4

Merged
merged 2 commits into from
Jul 8, 2024
Merged
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
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