-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathnextflow_schema.json
More file actions
69 lines (69 loc) · 2.88 KB
/
Copy pathnextflow_schema.json
File metadata and controls
69 lines (69 loc) · 2.88 KB
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
{
"$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})$"
},
"affiliation": {
"type": "string",
"description": "Your company or institution name (organization).",
"fa_icon": "fas fa-building"
},
"first_name": {
"type": "string",
"description": "Your first name. Required for events that request it (e.g. ISMB/BOSC 2026).",
"fa_icon": "fas fa-user"
},
"last_name": {
"type": "string",
"description": "Your last name. Required for events that request it (e.g. ISMB/BOSC 2026).",
"fa_icon": "fas fa-user"
},
"event": {
"type": "string",
"default": "ismb_bosc_2026",
"description": "Which event are you attending?",
"enum": [
"ismb_bosc_2026",
"fog_2026"
],
"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",
"hidden": true
}
}
}
},
"allOf": [
{
"$ref": "#/$defs/input_output_options"
}
]
}