-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmerge_features.cwl
56 lines (55 loc) · 1.05 KB
/
merge_features.cwl
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
47
48
49
50
51
52
53
54
55
56
#!/usr/bin/env cwl-runner
cwlVersion: v1.2
class: CommandLineTool
baseCommand: [python3, /app/merge_features.py]
arguments: [-o, output.csv]
requirements:
NetworkAccess:
networkAccess: true
EnvVarRequirement:
envDef:
DB_CONNECTION: postgresql://postgres:[email protected]:5432/postgres
DockerRequirement:
dockerImageId: erd-etl
dockerLoad: scripts/erd-etl.tar
inputs:
openface_features:
type: File
inputBinding:
position: 1
prefix: -of
topics:
type: File
inputBinding:
position: 2
prefix: -tp
silences:
type: File
inputBinding:
position: 3
prefix: -sl
praat_features:
type: File
inputBinding:
position: 4
prefix: -pr
sentiment_features:
type: File
inputBinding:
position: 5
prefix: -sm
video_file:
type: File
inputBinding:
position: 6
prefix: -vi
jobid:
type: string
inputBinding:
position: 7
prefix: -jid
outputs:
csv_out:
type: File
outputBinding:
glob: ./output.csv