-
Notifications
You must be signed in to change notification settings - Fork 1
/
task2_workflow.cwl
409 lines (381 loc) · 12.6 KB
/
task2_workflow.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
#!/usr/bin/env cwl-runner
cwlVersion: v1.0
class: Workflow
label: RARE-X A Rare Disease Open Science Data Challenge Evaluation Task 2
doc: >
This workflow will run and evaluate Docker submissions to the
RARE-X Challenge (syn51198355). A single metric will be returned:
accuracy.
requirements:
- class: StepInputExpressionRequirement
inputs:
adminUploadSynId:
label: Synapse Folder ID accessible by an admin
type: string
submissionId:
label: Submission ID
type: int
submitterUploadSynId:
label: Synapse Folder ID accessible by the submitter
type: string
synapseConfig:
label: filepath to .synapseConfig file
type: File
workflowSynapseId:
label: Synapse File ID that links to the workflow
type: string
outputs: []
steps:
set_submitter_folder_permissions:
doc: Give challenge organizers `download` permissions to the submission logs
run: |-
https://raw.githubusercontent.com/Sage-Bionetworks/ChallengeWorkflowTemplates/v4.0/cwl/set_permissions.cwl
in:
- id: entityid
source: "#submitterUploadSynId"
# TODO: replace `valueFrom` with the admin user ID or admin team ID
- id: principalid
valueFrom: "3468096"
- id: permissions
valueFrom: "download"
- id: synapse_config
source: "#synapseConfig"
out: []
set_admin_folder_permissions:
doc: Give challenge organizers `download` permissions to generated prediction file
run: |-
https://raw.githubusercontent.com/Sage-Bionetworks/ChallengeWorkflowTemplates/v4.0/cwl/set_permissions.cwl
in:
- id: entityid
source: "#adminUploadSynId"
# TODO: replace `valueFrom` with the admin user ID or admin team ID
- id: principalid
valueFrom: "3468096"
- id: permissions
valueFrom: "download"
- id: synapse_config
source: "#synapseConfig"
out: []
get_docker_submission:
doc: Download submission
run: |-
https://raw.githubusercontent.com/Sage-Bionetworks/ChallengeWorkflowTemplates/v4.0/cwl/get_submission.cwl
in:
- id: submissionid
source: "#submissionId"
- id: synapse_config
source: "#synapseConfig"
out:
- id: filepath
- id: docker_repository
- id: docker_digest
- id: entity_id
- id: entity_type
- id: results
get_docker_config:
doc: Get credentials in order to pull submission image from Synapse Docker registry
run: |-
https://raw.githubusercontent.com/Sage-Bionetworks/ChallengeWorkflowTemplates/v4.0/cwl/get_docker_config.cwl
in:
- id: synapse_config
source: "#synapseConfig"
out:
- id: docker_registry
- id: docker_authentication
download_goldstandard:
doc: Download goldstandard
run: |-
https://raw.githubusercontent.com/Sage-Bionetworks-Workflows/cwl-tool-synapseclient/v1.4/cwl/synapse-get-tool.cwl
in:
- id: synapseid
valueFrom: "syn52069273"
- id: synapse_config
source: "#synapseConfig"
out:
- id: filepath
validate_docker:
doc: Checks that submission has a Docker image name + SHA digest
run: |-
https://raw.githubusercontent.com/Sage-Bionetworks/ChallengeWorkflowTemplates/v4.0/cwl/validate_docker.cwl
in:
- id: submissionid
source: "#submissionId"
- id: synapse_config
source: "#synapseConfig"
out:
- id: results
- id: status
- id: invalid_reasons
email_docker_validation:
doc: If errors, send email to submitter
run: |-
https://raw.githubusercontent.com/Sage-Bionetworks/ChallengeWorkflowTemplates/v4.0/cwl/validate_email.cwl
in:
- id: submissionid
source: "#submissionId"
- id: synapse_config
source: "#synapseConfig"
- id: status
source: "#validate_docker/status"
- id: invalid_reasons
source: "#validate_docker/invalid_reasons"
# OPTIONAL: set `default` to `false` if email notification about valid submission is needed
- id: errors_only
default: true
out: [finished]
annotate_docker_validation_with_output:
doc: Add `submission_status` and `submission_errors` annotations to submission
run: |-
https://raw.githubusercontent.com/Sage-Bionetworks/ChallengeWorkflowTemplates/v4.0/cwl/annotate_submission.cwl
in:
- id: submissionid
source: "#submissionId"
- id: annotation_values
source: "#validate_docker/results"
- id: to_public
default: true
- id: force
default: true
- id: synapse_config
source: "#synapseConfig"
out: [finished]
check_docker_status:
doc: >
Check validation status of submission; if 'INVALID', throw exception to
stop workflow from continuing to downstream step of running Docker container
run: https://raw.githubusercontent.com/Sage-Bionetworks/ChallengeWorkflowTemplates/v4.0/cwl/check_status.cwl
in:
- id: status
source: "#validate_docker/status"
- id: previous_annotation_finished
source: "#annotate_docker_validation_with_output/finished"
- id: previous_email_finished
source: "#email_docker_validation/finished"
out: [finished]
run_docker:
doc: >
Run Docker submission using mounted volumes, specified by `input_dir`.
Because input data is sensitive, Docker logs will NOT be stored.
run: steps/run_docker.cwl
in:
- id: docker_repository
source: "#get_docker_submission/docker_repository"
- id: docker_digest
source: "#get_docker_submission/docker_digest"
- id: submissionid
source: "#submissionId"
- id: docker_registry
source: "#get_docker_config/docker_registry"
- id: docker_authentication
source: "#get_docker_config/docker_authentication"
- id: status
source: "#validate_docker/status"
- id: parentid
source: "#adminUploadSynId"
- id: synapse_config
source: "#synapseConfig"
- id: store
default: true
- id: input_dir
valueFrom: "/home/ec2-user/grnd_trth"
- id: docker_script
default:
class: File
location: "scripts/run_docker.py"
out:
- id: predictions
- id: results
- id: status
- id: invalid_reasons
email_docker:
doc: Send email if an error occured while running the Docker submission.
run: |-
https://raw.githubusercontent.com/Sage-Bionetworks/ChallengeWorkflowTemplates/v4.0/cwl/validate_email.cwl
in:
- id: submissionid
source: "#submissionId"
- id: synapse_config
source: "#synapseConfig"
- id: status
source: "#run_docker/status"
- id: invalid_reasons
source: "#run_docker/invalid_reasons"
- id: errors_only
default: true
out: [finished]
annotate_docker_run_results:
doc: Update `submission_status` and `submission_errors` annotations
run: |-
https://raw.githubusercontent.com/Sage-Bionetworks/ChallengeWorkflowTemplates/v3.2/cwl/annotate_submission.cwl
in:
- id: submissionid
source: "#submissionId"
- id: annotation_values
source: "#run_docker/results"
- id: to_public
default: true
- id: force
default: true
- id: synapse_config
source: "#synapseConfig"
- id: previous_annotation_finished
source: "#annotate_docker_validation_with_output/finished"
out: [finished]
check_docker_run_status:
doc: >
Check validation status of submission; if 'INVALID', throw exception to
stop workflow from continuing to downstream step of validating predictions
run: |-
https://raw.githubusercontent.com/Sage-Bionetworks/ChallengeWorkflowTemplates/v4.0/cwl/check_status.cwl
in:
- id: status
source: "#run_docker/status"
- id: previous_annotation_finished
source: "#annotate_docker_run_results/finished"
- id: previous_email_finished
source: "#email_docker/finished"
out: [finished]
upload_results:
doc: Upload generated predictions file to Synapse
run: |-
https://raw.githubusercontent.com/Sage-Bionetworks/ChallengeWorkflowTemplates/v4.0/cwl/upload_to_synapse.cwl
in:
- id: infile
source: "#run_docker/predictions"
- id: parentid
source: "#adminUploadSynId"
- id: used_entity
source: "#get_docker_submission/entity_id"
- id: executed_entity
source: "#workflowSynapseId"
- id: synapse_config
source: "#synapseConfig"
out:
- id: uploaded_fileid
- id: uploaded_file_version
- id: results
annotate_docker_upload_results:
doc: >
Add `prediction_fileid` annotation to submission, where value is
synID of uploaded predictions file
run: |-
https://raw.githubusercontent.com/Sage-Bionetworks/ChallengeWorkflowTemplates/v4.0/cwl/annotate_submission.cwl
in:
- id: submissionid
source: "#submissionId"
- id: annotation_values
source: "#upload_results/results"
- id: to_public
default: true
- id: force
default: true
- id: synapse_config
source: "#synapseConfig"
- id: previous_annotation_finished
source: "#annotate_docker_run_results/finished"
out: [finished]
validate:
doc: Validate predictions file, which should be 2-column TSV
run: steps/validate.cwl
in:
- id: input_file
source: "#run_docker/predictions"
- id: goldstandard
source: "#download_goldstandard/filepath"
out:
- id: results
- id: status
- id: invalid_reasons
email_validation:
doc: Send email of validation results to submitter
run: |-
https://raw.githubusercontent.com/Sage-Bionetworks/ChallengeWorkflowTemplates/v4.0/cwl/validate_email.cwl
in:
- id: submissionid
source: "#submissionId"
- id: synapse_config
source: "#synapseConfig"
- id: status
source: "#validate/status"
- id: invalid_reasons
source: "#validate/invalid_reasons"
- id: errors_only
default: true
out: [finished]
annotate_validation_with_output:
doc: Update `submission_status` and `submission_errors` annotations
run: |-
https://raw.githubusercontent.com/Sage-Bionetworks/ChallengeWorkflowTemplates/v4.0/cwl/annotate_submission.cwl
in:
- id: submissionid
source: "#submissionId"
- id: annotation_values
source: "#validate/results"
- id: to_public
default: true
- id: force
default: true
- id: synapse_config
source: "#synapseConfig"
- id: previous_annotation_finished
source: "#annotate_docker_upload_results/finished"
out: [finished]
check_status:
doc: >
Check validation status of submission; if 'INVALID', throw exception to
stop workflow from continuing to downstream step of scoring predictions
run: |-
https://raw.githubusercontent.com/Sage-Bionetworks/ChallengeWorkflowTemplates/v4.0/cwl/check_status.cwl
in:
- id: status
source: "#validate/status"
- id: previous_annotation_finished
source: "#annotate_validation_with_output/finished"
- id: previous_email_finished
source: "#email_validation/finished"
out: [finished]
score:
doc: Score submission
run: steps/score.cwl
in:
- id: predictions_file
source: "#run_docker/predictions"
- id: goldstandard
source: "#download_goldstandard/filepath"
- id: check_validation_finished
source: "#check_status/finished"
out:
- id: results
email_score:
doc: Send email of scores to submitter
run: |-
https://raw.githubusercontent.com/Sage-Bionetworks/ChallengeWorkflowTemplates/v4.0/cwl/score_email.cwl
in:
- id: submissionid
source: "#submissionId"
- id: synapse_config
source: "#synapseConfig"
- id: results
source: "#score/results"
# OPTIONAL: add annotations to be withheld from participants to `[]`
# - id: private_annotations
# default: []
out: []
annotate_submission_with_output:
doc: Update `submission_status` and add scoring metric annotations
run: |-
https://raw.githubusercontent.com/Sage-Bionetworks/ChallengeWorkflowTemplates/v4.0/cwl/annotate_submission.cwl
in:
- id: submissionid
source: "#submissionId"
- id: annotation_values
source: "#score/results"
- id: to_public
default: true
- id: force
default: true
- id: synapse_config
source: "#synapseConfig"
- id: previous_annotation_finished
source: "#annotate_validation_with_output/finished"
out: [finished]