-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphysrisk.cwl
More file actions
46 lines (45 loc) · 1.09 KB
/
Copy pathphysrisk.cwl
File metadata and controls
46 lines (45 loc) · 1.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
cwlVersion: v1.2
$graph:
- class: Workflow
id: get-asset-impact-workflow
label: get asset impact
doc: get asset impact
requirements:
NetworkAccess:
networkAccess: true
inputs:
json_file:
type: string
doc: the file to transform
outputs:
- id: asset-result
type: Directory
outputSource:
- get-impact/asset-result
steps:
get-impact:
run: "#get-asset-impact"
in:
json_file: json_file
out:
- asset-result
- class: CommandLineTool
id: get-asset-impact-3
requirements:
NetworkAccess:
networkAccess: true
DockerRequirement:
dockerPull: public.ecr.aws/c9k5s3u3/osc-physrisk:latest
baseCommand: get_asset_impact.py
inputs:
json_file:
type: string
inputBinding:
prefix: --json_file=
separate: false
position: 4
outputs:
asset-result:
type: Directory
outputBinding:
glob: "./asset_output"