-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathnextflow_schema_patch_release.json
44 lines (44 loc) · 1.61 KB
/
nextflow_schema_patch_release.json
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
{
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "https://raw.githubusercontent.com/Sage-Bionetworks-Workflows/nf-genie/master/nextflow_schema.json",
"title": "Sage-Bionetworks-Workflows/nf-genie pipeline parameters",
"description": "Nextflow pipeline for main GENIE processing",
"type": "object",
"definitions": {
"patch_release": {
"title": "patch_release",
"type": "object",
"description": "Patch release configurations",
"default": "",
"properties": {
"release_synid": {
"type": "string",
"description": "Existing consortium release synapse folder id"
},
"new_release_synid": {
"type": "string",
"description": "New consoritum release synapse folder id"
},
"retracted_sample_synid": {
"type": "string",
"description": "samples_to_retract.csv of 3rd consortium release"
},
"release": {
"type": "string",
"description": "Release name. E.g: 13.1-consortium",
"default": "TEST.consortium",
"pattern": "\\d+[.]\\d+-(consortium)$"
},
"project_id": {
"type": "string",
"description": "Synapse GENIE internal projects."
}
}
}
},
"allOf": [
{
"$ref": "#/definitions/patch_release"
}
]
}