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

some additions

parent 76f190c8
No related branches found
No related tags found
No related merge requests found
......@@ -221,7 +221,7 @@ task GatherVcfs {
input {
Array[File]+ inputVcfs
Array[File]+ inputVcfIndexes
String outputVcfPath
String outputVcfPath = "out.vcf.gz"
Int memory = 4
Float memoryMultiplier = 3.0
......@@ -230,6 +230,7 @@ task GatherVcfs {
command {
set -e
mkdir -p $(dirname ~{outputVcfPath})
picard -Xmx~{memory}G \
GatherVcfs \
INPUT=~{sep=' INPUT=' inputVcfs} \
......
......@@ -64,7 +64,7 @@ task Merge {
command {
set -e
mkdir -p ~{outputBamPath}
mkdir -p $(dirname ~{outputBamPath})
samtools merge ~{true="-f" false="" force} ~{outputBamPath} ~{sep=' ' bamFiles}
}
......
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