Skip to content
Snippets Groups Projects
Commit 14dcd561 authored by Ruben Vorderman's avatar Ruben Vorderman
Browse files

dockerImage somaticseq

parent 24422854
No related branches found
No related tags found
No related merge requests found
......@@ -28,6 +28,7 @@ task ParallelPaired {
File? strelkaIndel
Int threads = 1
String dockerImage = "lethalfang/somaticseq:3.1.0"
}
command {
......@@ -69,7 +70,7 @@ task ParallelPaired {
runtime {
cpu: threads
docker: "lethalfang/somaticseq:3.1.0"
docker: dockerImage
}
}
......@@ -99,6 +100,7 @@ task ParallelPairedTrain {
File? strelkaIndel
Int threads = 1
String dockerImage = "lethalfang/somaticseq:3.1.0"
}
command {
......@@ -139,7 +141,7 @@ task ParallelPairedTrain {
runtime {
cpu: threads
docker: "lethalfang/somaticseq:3.1.0"
docker: dockerImage
}
}
......@@ -162,6 +164,7 @@ task ParallelSingle {
File? strelkaVCF
Int threads = 1
String dockerImage = "lethalfang/somaticseq:3.1.0"
}
command {
......@@ -196,7 +199,7 @@ task ParallelSingle {
runtime {
cpu: threads
docker: "lethalfang/somaticseq:3.1.0"
docker: dockerImage
}
}
......@@ -219,6 +222,7 @@ task ParallelSingleTrain {
File? strelkaVCF
Int threads = 1
String dockerImage = "lethalfang/somaticseq:3.1.0"
}
command {
......@@ -252,6 +256,6 @@ task ParallelSingleTrain {
runtime {
cpu: threads
docker: "lethalfang/somaticseq:3.1.0"
docker: dockerImage
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment