Skip to content

Commit

Permalink
Merge pull request #478 from broadinstitute/ct-additional-beast-outputs
Browse files Browse the repository at this point in the history
extend beast task and workflow to glob and output *.ops, *.rates, and *.root files
  • Loading branch information
dpark01 authored Sep 8, 2023
2 parents 5f421c0 + d0cdfb1 commit 26e43f3
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
3 changes: 3 additions & 0 deletions pipes/WDL/tasks/tasks_interhost.wdl
Original file line number Diff line number Diff line change
Expand Up @@ -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()
}

Expand Down
3 changes: 3 additions & 0 deletions pipes/WDL/workflows/beast_gpu.wdl
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
}

0 comments on commit 26e43f3

Please sign in to comment.