-
Notifications
You must be signed in to change notification settings - Fork 1
/
nextflow_schema.json
67 lines (67 loc) · 3.02 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
{
"$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": {
"parameters": {
"title": "Input options",
"type": "object",
"fa_icon": "fas fa-terminal",
"description": "Define GENIE pipeline parameters.",
"properties": {
"process_type": {
"type": "string",
"default": "only_validate",
"description": "Available processing functions",
"enum": [
"only_validate",
"main_process",
"maf_process",
"consortium_release",
"public_release",
"consortium_release_step_only",
"public_release_step_only"
]
},
"center": {
"type": "string",
"description": "Pick a center to process or validate. Defaults to ALL which means all centers. This value should be ALL if you pick consortium release or public release.",
"default": "ALL"
},
"create_new_maf_db": {
"type": "boolean",
"description": "Create a new maf Synapse Table. Toggle this for every consortium release."
},
"release": {
"type": "string",
"description": "Release name (specify TEST.consortium/TEST.public to test consortium and public releases). E.g: 13.1-consortium",
"default": "TEST.consortium",
"pattern": "\\d+[.]\\d+-(consortium|public)$|TEST.public|TEST.consortium|STAGING.consortium|STAGING.public"
},
"main_pipeline_docker":{
"type": "string",
"description": "Docker used in main processes - validate_data, process_main, process_maf, create_consortium_release, create_public_release, create_consortium_release_only, and create_public_release_only"
},
"main_release_utils_docker":{
"type": "string",
"description": "Docker used in check_for_retractions and load_to_bpc processes"
},
"find_maf_artifacts_docker":{
"type": "string",
"description": "Docker used in find_maf_artifiacts process"
},
"create_data_guide_docker":{
"type": "string",
"description": "Docker used in create_data_guide process"
}
}
}
},
"allOf": [
{
"$ref": "#/definitions/parameters"
}
]
}