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

address strelka and manta changes

parent f514e420
No related branches found
No related tags found
No related merge requests found
...@@ -10,7 +10,7 @@ task Somatic { ...@@ -10,7 +10,7 @@ task Somatic {
File? normalBamIndex File? normalBamIndex
File referenceFasta File referenceFasta
File referenceFastaFai File referenceFastaFai
String runDir = "." String runDir = "./manta_run"
File? callRegions File? callRegions
File? callRegionsIndex File? callRegionsIndex
Boolean exome = false Boolean exome = false
...@@ -22,8 +22,6 @@ task Somatic { ...@@ -22,8 +22,6 @@ task Somatic {
} }
command { command {
mkdir -p ~{runDir}
set -e
configManta.py \ configManta.py \
~{"--normalBam " + normalBam} \ ~{"--normalBam " + normalBam} \
~{"--tumorBam " + tumorBam} \ ~{"--tumorBam " + tumorBam} \
......
...@@ -4,7 +4,7 @@ import "common.wdl" as common ...@@ -4,7 +4,7 @@ import "common.wdl" as common
task Germline { task Germline {
input { input {
String runDir = "." String runDir = "./strelka_run"
Array[File]+ bams Array[File]+ bams
Array[File]+ indexes Array[File]+ indexes
File referenceFasta File referenceFasta
...@@ -20,8 +20,6 @@ task Germline { ...@@ -20,8 +20,6 @@ task Germline {
} }
command { command {
set -e
mkdir -p ~{runDir}
configureStrelkaGermlineWorkflow.py \ configureStrelkaGermlineWorkflow.py \
--bam ~{sep=" --bam " bams} \ --bam ~{sep=" --bam " bams} \
--ref ~{referenceFasta} \ --ref ~{referenceFasta} \
...@@ -50,7 +48,7 @@ task Germline { ...@@ -50,7 +48,7 @@ task Germline {
task Somatic { task Somatic {
input { input {
String runDir = "." String runDir = "./strelka_run"
File normalBam File normalBam
File normalBamIndex File normalBamIndex
File tumorBam File tumorBam
...@@ -71,8 +69,6 @@ task Somatic { ...@@ -71,8 +69,6 @@ task Somatic {
} }
command { command {
set -e
mkdir -p ~{runDir}
configureStrelkaSomaticWorkflow.py \ configureStrelkaSomaticWorkflow.py \
--normalBam ~{normalBam} \ --normalBam ~{normalBam} \
--tumorBam ~{tumorBam} \ --tumorBam ~{tumorBam} \
......
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