From cf05dea5a811c0281874d8335ffb391c7b6acdc6 Mon Sep 17 00:00:00 2001 From: imoustakas <i.moustakas@lumc.nl> Date: Thu, 27 Sep 2018 15:32:45 +0200 Subject: [PATCH] Fix Type issues --- macs2.wdl | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/macs2.wdl b/macs2.wdl index 57f75f1..e89a1b7 100644 --- a/macs2.wdl +++ b/macs2.wdl @@ -5,10 +5,10 @@ import "common.wdl" task PeakCalling { input { String? preCommand - File inputBams - File inputBamsIndex - File? controlBams - File? controlBamsIndex + Array[File]+ inputBams + Array[File]+ inputBamsIndex + Array[File]+? controlBams + Array[File]+? controlBamsIndex String outDir String sampleName Int threads = 1 -- GitLab