wdl-analysis 0.22.0

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:36:38
   │
36 │     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:39:16
   │
39 │     fpga: task.cpu > 2
   │                ^^^

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