From 6d4a3a7fe5fab2648fcf68b88947d02f479c56c8 Mon Sep 17 00:00:00 2001 From: DavyCats <davycats.dc@gmail.com> Date: Tue, 5 Jun 2018 11:06:55 +0200 Subject: [PATCH] fix createLink --- common.wdl | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/common.wdl b/common.wdl index 2ac9cb9..d80d47e 100644 --- a/common.wdl +++ b/common.wdl @@ -106,7 +106,9 @@ task appendToStringArray { } task createLink { - File inputFile + # Making this of type File will create a link to the copy of the file in the execution + # folder, instead of the actual file. + String inputFile String outputPath command { -- GitLab