Skip to content
Snippets Groups Projects
Unverified Commit 4b87b523 authored by Peter van 't Hof's avatar Peter van 't Hof Committed by GitHub
Browse files

Merge pull request #63 from biowdl/BIOWDL-119

remove link creation from CombineGVCFs
parents 6bab3aad ce4cef8b
No related branches found
No related tags found
No related merge requests found
......@@ -123,18 +123,12 @@ task CombineGVCFs {
command {
set -e -o pipefail
~{preCommand}
if [ ~{length(gvcfFiles)} -gt 1 ]; then
~{toolCommand} \
CombineGVCFs \
-R ~{reference.fasta} \
-O ~{outputPath} \
-V ~{sep=' -V ' gvcfFiles} \
-L ~{sep=' -L ' intervals}
else # TODO this should be handeled in wdl
ln -sf ~{gvcfFiles[0]} ~{outputPath}
ln -sf ~{gvcfFiles[0]} ~{outputPath}.tbi
fi
~{toolCommand} \
CombineGVCFs \
-R ~{reference.fasta} \
-O ~{outputPath} \
-V ~{sep=' -V ' gvcfFiles} \
-L ~{sep=' -L ' intervals}
}
output {
......
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