I want to do something like this: ```wdl output { Array[String] labels = if exists("labels.txt") then read_lines("labels.txt") else [] } ``` but am currently writing an ugly workaround to achieve the same logic.
I want to do something like this:
but am currently writing an ugly workaround to achieve the same logic.