This repository has been archived by the owner on Jun 13, 2024. It is now read-only.
generated from Sage-Bionetworks-Challenges/model-to-data-challenge-workflow
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathadmin-main-wf.cwl
204 lines (188 loc) · 6.09 KB
/
admin-main-wf.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
#!/usr/bin/env cwl-runner
#
# Main workflow. Runs through synthetic data and submits to internal queues
#
# Inputs:
# submissionId: ID of the Synapse submission to process
# adminUploadSynId: ID of a folder accessible only to the submission queue administrator
# submitterUploadSynId: ID of a folder accessible to the submitter
# workflowSynapseId: ID of the Synapse entity containing a reference to the workflow file(s)
#
cwlVersion: v1.0
class: Workflow
requirements:
- class: StepInputExpressionRequirement
- class: ScatterFeatureRequirement
inputs:
- id: submissionId
type: int
- id: adminUploadSynId
type: string
- id: submitterUploadSynId
type: string
- id: workflowSynapseId
type: string
- id: synapseConfig
type: File
# there are no output at the workflow engine level. Everything is uploaded to Synapse
outputs: []
steps:
create_adminsynid_json:
run: steps/create_annotations.cwl
in:
- id: admin_synid
source: "#adminUploadSynId"
out: [json_out]
annotate_adminsynid:
run: https://raw.githubusercontent.com/Sage-Bionetworks/ChallengeWorkflowTemplates/v3.2/cwl/annotate_submission.cwl
in:
- id: submissionid
source: "#submissionId"
- id: annotation_values
source: "#create_adminsynid_json/json_out"
- id: to_public
default: true
- id: force_change_annotation_acl
default: true
- id: synapse_config
source: "#synapseConfig"
out: [finished]
# Give download permission to challenge organizing team
set_submitter_folder_permissions:
run: https://raw.githubusercontent.com/Sage-Bionetworks/ChallengeWorkflowTemplates/v3.2/cwl/set_permissions.cwl
in:
- id: entityid
source: "#adminUploadSynId"
- id: principalid
valueFrom: "3427583" # Change this
- id: permissions
valueFrom: "download"
- id: synapse_config
source: "#synapseConfig"
out: []
# Give download permission to challenge organizing team
set_admin_folder_permissions:
run: https://raw.githubusercontent.com/Sage-Bionetworks/ChallengeWorkflowTemplates/v3.2/cwl/set_permissions.cwl
in:
- id: entityid
source: "#submitterUploadSynId"
- id: principalid
valueFrom: "3427583" # Change this
- id: permissions
valueFrom: "download"
- id: synapse_config
source: "#synapseConfig"
out: []
get_docker_submission:
run: https://raw.githubusercontent.com/Sage-Bionetworks/ChallengeWorkflowTemplates/v3.2/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: evaluation_id
- id: results
validate_docker:
run: https://raw.githubusercontent.com/Sage-Bionetworks/ChallengeWorkflowTemplates/v3.2/cwl/validate_docker.cwl
in:
- id: submissionid
source: "#submissionId"
- id: synapse_config
source: "#synapseConfig"
out:
- id: results
- id: status
- id: invalid_reasons
annotate_docker_validation_with_output:
run: https://raw.githubusercontent.com/Sage-Bionetworks/ChallengeWorkflowTemplates/v3.2/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]
email_docker_validation:
run: https://raw.githubusercontent.com/Sage-Bionetworks/ChallengeWorkflowTemplates/v3.2/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"
- id: errors_only
default: true
out: [finished]
check_docker_status:
run: https://raw.githubusercontent.com/Sage-Bionetworks/ChallengeWorkflowTemplates/v3.2/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]
create_submission_file:
run: steps/create_submission_file.cwl
in:
- id: submissionid
source: "#submissionId"
# Just needs to be a previous boolean step
- id: previous
source: "#check_docker_status/finished"
out: [submission_out]
upload_submission_file:
run: https://raw.githubusercontent.com/Sage-Bionetworks/ChallengeWorkflowTemplates/v3.2/cwl/upload_to_synapse.cwl
in:
- id: infile
source: "#create_submission_file/submission_out"
- 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
# Add tool to determine which queue to submit to
determine_internal_queue:
run: steps/determine_queue.cwl
in:
- id: synapse_config
source: "#synapseConfig"
- id: submission_viewid
valueFrom: "syn26209272"
out:
- id: submit_to_queue
# Ability to submit to many internal queues
submit_to_internal_queues:
run: https://raw.githubusercontent.com/Sage-Bionetworks/ChallengeWorkflowTemplates/v3.2/cwl/submit_to_challenge.cwl
in:
- id: submission_file
source: "#upload_submission_file/uploaded_fileid"
- id: submissionid
source: "#submissionId"
- id: synapse_config
source: "#synapseConfig"
- id: evaluationid
source: "#determine_internal_queue/submit_to_queue"
out: []