wdl-analysis 0.19.1

Analysis of Workflow Description Language (WDL) documents.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
error: `task.previous` does not have a member named `not_a_member`
   ┌─ tests/analysis/task-scope-full/source.wdl:24:38
   │
24 │     gpu: select_first([task.previous.not_a_member, []])
   │                                      ^^^^^^^^^^^^

error: the `task` variable does not have a member named `cpu`
   ┌─ tests/analysis/task-scope-full/source.wdl:27:16
   │
27 │     fpga: task.cpu > 2
   │                ^^^

error: the `task` variable does not have a member named `memory`
   ┌─ tests/analysis/task-scope-full/source.wdl:30:22
   │
30 │     maxRetries: task.memory / 1000000000
   │                      ^^^^^^