-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathnextflow_schema.json
57 lines (57 loc) · 1.88 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
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com///nextflow_schema.json",
"title": " pipeline parameters",
"description": "",
"type": "object",
"$defs": {
"input_output_options": {
"title": "Input/output options",
"type": "object",
"fa_icon": "fas fa-terminal",
"description": "Define where the pipeline should find input data and save output data.",
"required": [
"email",
"event"
],
"properties": {
"email": {
"type": "string",
"description": "Enter your email address here.",
"fa_icon": "fas fa-envelope",
"help_text": "Set this parameter to your e-mail address to get a summary e-mail with details of the run sent to you when the workflow exits. If set in your user config file (`~/.nextflow/config`) then you don't need to specify this on the command line for every run.",
"pattern": "^([a-zA-Z0-9_\\-\\.]+)@([a-zA-Z0-9_\\-\\.]+)\\.([a-zA-Z]{2,5})$"
},
"event": {
"type": "string",
"default": "fog_2025",
"description": "Which event are you attending?",
"enum": [
"general",
"slas_2025",
"fog_2025",
"ismb_bosc_2024",
"biotechx_2024",
"ashg_2024"
],
"fa_icon": "fas fa-ticket-alt"
},
"outdir": {
"type": "string",
"format": "directory-path",
"description": "The output directory where the results will be saved. You have to use absolute paths to storage on Cloud infrastructure.",
"fa_icon": "fas fa-folder-open",
"default": "results"
},
"ticket_number_emit_session_id": {
"type": "boolean"
}
}
}
},
"allOf": [
{
"$ref": "#/$defs/input_output_options"
}
]
}