Skip to content
Snippets Groups Projects
Commit 3565efa4 authored by António Paulo's avatar António Paulo
Browse files

add modify_Strelka as task

parent d1522b25
No related branches found
No related tags found
No related merge requests found
......@@ -267,3 +267,30 @@ task ParallelSingleTrain {
docker: dockerImage
}
}
task ModifyStrelka {
input {
String installDir = "/opt/somaticseq/vcfModifier" #the location in the docker image
File strelkaVCF
String? outputVCFName = basename(strelkaVCF, ".gz")
Int threads = 1
String dockerImage = "lethalfang/somaticseq:3.1.0"
}
command {
~{installDir}/modify_Strelka.py \
-infile ~{strelkaVCF} \
-outfile ~{outputVCFName}
}
output {
File outputVcf = outputVCFName
}
runtime {
cpu: threads
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