1#! cwl-runner
2
3cwlVersion: v1.1
4class: CommandLineTool
5baseCommand: [python, -m, census.interpolate_data]
6
7inputs:
8 interpolate:
9 type: string
10 default: "1999:2019"
11 inputBinding:
12 prefix: -i
13 log:
14 type: File
15 default:
16 class: File
17 location: census.log
18 inputBinding:
19 prefix: --log
20 in_pkl:
21 type: File
22 default:
23 class: File
24 location: census.pkl
25 inputBinding:
26 prefix: --in_pkl
27 out_pkl:
28 type: string
29 default: "census_interpolated.pkl"
30 inputBinding:
31 prefix: --out_pkl
32
33outputs:
34 pkl:
35 type: File
36 outputBinding:
37 glob: $(inputs.out_pkl)