-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathnextflow_schema.json
97 lines (97 loc) · 3.67 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
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
{
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "https://raw.githubusercontent.com/Sage-Bionetworks/genie-bpc-pipeline/develop/nextflow_schema.json",
"title": "Sage-Bionetworks/genie-bpc-pipeline parameters",
"description": "Nextflow pipeline for GENIE BPC processing",
"type": "object",
"definitions": {
"parameters": {
"title": "Input options",
"type": "object",
"fa_icon": "fas fa-terminal",
"description": "Define GENIE BPC pipeline parameters.",
"properties": {
"cohort": {
"type": "string",
"default": "NSCLC",
"description": "Name of the cohort to process through GENIE BPC.",
"enum": [
"BLADDER",
"BrCa",
"CRC",
"NSCLC",
"PANC",
"Prostate",
"CRC2",
"NSCLC2",
"MELANOMA",
"OVARIAN",
"ESOPHAGO",
"RENAL"
]
},
"comment": {
"type": "string",
"description": "Description for this cohort run of the BPC pipeline",
"default": "NSCLC public release update"
},
"production": {
"type": "boolean",
"description": "Uploads to production project or not (staging project).",
"default": false,
"enum": [
true,
false
]
},
"step": {
"type": "string",
"default": "update_potential_phi_fields_table",
"description": "Available BPC steps",
"enum": [
"update_potential_phi_fields_table",
"merge_and_uncode_rca_uploads",
"update_data_table",
"genie_bpc_pipeline"
]
},
"use_grs": {
"type": "boolean",
"description": "Whether to use grs as primary mapping (dd as secondary) or not (using dd only).",
"default": false,
"enum": [
true,
false
]
},
"references_docker":{
"type": "string",
"description": "Name of docker to use in processes in scripts/references"
},
"uploads_docker":{
"type": "string",
"description": "Name of docker to use in processes in scripts/uploads"
},
"table_updates_docker":{
"type": "string",
"description": "Name of docker to use in processes in scripts/table_updates"
},
"schema_ignore_params": {
"type": "string",
"description": "Put parameters to ignore for validation here separated by comma",
"default": ""
},
"help": {
"type": "boolean",
"description": "Display input options and descriptions",
"default": false
}
}
}
},
"allOf": [
{
"$ref": "#/definitions/parameters"
}
]
}