Skip to content
Snippets Groups Projects
Commit 7dc64284 authored by cagaser's avatar cagaser
Browse files

add SV task: delly.wdl

parent 357e4300
No related branches found
No related tags found
No related merge requests found
version 1.0
import "common.wdl"
task CallSV {
input {
IndexedBamFile bamFile
Reference reference
String outputPath
}
command <<<
set -e
mkdir -p $(dirname ~{outputPath})
delly call \
-o ~{outputPath} \
-g ~{reference.fasta} \
~{bamFile.file}
>>>
output {
File dellyBcf = "~{outputPath}"
}
runtime {
docker: "quay.io/biocontainers/delly:0.8.1--h4037b6b_1"
}
}
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