diff --git a/pipes/WDL/tasks/tasks_interhost.wdl b/pipes/WDL/tasks/tasks_interhost.wdl index 38f64ad66..14598f19c 100644 --- a/pipes/WDL/tasks/tasks_interhost.wdl +++ b/pipes/WDL/tasks/tasks_interhost.wdl @@ -168,6 +168,9 @@ task beast { output { File beast_log = glob("*.log")[0] Array[File] trees = glob("*.trees") + Array[File] ops = glob("*.ops") + Array[File] rates = glob("*.rates") + Array[File] root = glob("*.root") File beast_stdout = stdout() } diff --git a/pipes/WDL/workflows/beast_gpu.wdl b/pipes/WDL/workflows/beast_gpu.wdl index 10c428ca3..1fef20063 100644 --- a/pipes/WDL/workflows/beast_gpu.wdl +++ b/pipes/WDL/workflows/beast_gpu.wdl @@ -13,6 +13,9 @@ workflow beast_gpu { output { File beast_log = beast.beast_log Array[File] trees = beast.trees + Array[File] ops = beast.ops + Array[File] rates = beast.rates + Array[File] root = beast.root String beast_stdout = beast.beast_stdout } }