-
Notifications
You must be signed in to change notification settings - Fork 1
/
nextflow_schema.json
60 lines (60 loc) · 2.1 KB
/
nextflow_schema.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "https://raw.githubusercontent.com/Sage-Bionetworks/GENIE-Sponsored-Projects/develop/nextflow_schema.json",
"title": "Sage-Bionetworks/GENIE-Sponsored-Projects parameters",
"description": "Nextflow pipeline for BPC cBioportal release",
"type": "object",
"definitions": {
"parameters": {
"title": "Input options",
"type": "object",
"fa_icon": "fas fa-terminal",
"description": "Define BPC cBioportal release pipeline parameters.",
"properties": {
"cohort": {
"type": "string",
"default": "NSCLC",
"description": "Name of the cohort to release for BPC.",
"enum": [
"BLADDER",
"BrCa",
"CRC",
"NSCLC",
"PANC",
"Prostate",
"CRC2",
"NSCLC2",
"MELANOMA",
"OVARIAN",
"ESOPHAGO",
"RENAL"
]
},
"release": {
"type": "string",
"description": "Name for this BPC cBioportal release",
"default": "1.1-consortium"
},
"production": {
"type": "boolean",
"description": "Whether to run in production mode or not. Production mode means uploading to Synapse.",
"default": false,
"enum": [
true,
false
]
},
"help": {
"type": "boolean",
"description": "Display input options and descriptions",
"default": false
}
}
}
},
"allOf": [
{
"$ref": "#/definitions/parameters"
}
]
}