From 18cdbddf4acbee183b07d6e90134081daba1e96e Mon Sep 17 00:00:00 2001 From: Ruben Vorderman <r.h.p.vorderman@lumc.nl> Date: Tue, 4 Jun 2019 13:36:00 +0200 Subject: [PATCH] simplify --- picard.wdl | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/picard.wdl b/picard.wdl index bca4e9e..e88172f 100644 --- a/picard.wdl +++ b/picard.wdl @@ -328,10 +328,8 @@ task MergeVCFs { } output { - IndexedVcfFile outputVcf = object { - file: outputVcfPath, - index: outputVcfPath + ".tbi" - } + File outputVcf = outputVcfPath + File outputVcfIndex = outputVcfPath + ".tbi" } runtime { -- GitLab