-
Notifications
You must be signed in to change notification settings - Fork 0
/
nextflow_schema.json
55 lines (55 loc) · 2 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
{
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "https://raw.githubusercontent.com/your-username/your-repo/master/nextflow_schema.json",
"title": "Your Pipeline Parameters",
"description": "Schema for the parameters of your Nextflow pipeline",
"type": "object",
"definitions": {
"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": ["reads", "output"],
"properties": {
"reads": {
"type": "string",
"format": "path",
"description": "Path to input reads",
"help_text": "Path to input reads (e.g., fastq files)",
"fa_icon": "fas fa-folder-open"
},
"output": {
"type": "string",
"format": "path",
"description": "Path to the output directory",
"help_text": "The output directory where results will be saved",
"fa_icon": "fas fa-folder-open"
}
}
},
"processing_options": {
"title": "Processing Options",
"type": "object",
"fa_icon": "fas fa-cogs",
"description": "Parameters to customize the processing behavior.",
"properties": {
"sample_size": {
"type": "integer",
"description": "Number of samples to process",
"default": 1000000,
"minimum": 100,
"fa_icon": "fas fa-sort-numeric-down"
}
}
}
},
"allOf": [
{
"$ref": "#/definitions/input_output_options"
},
{
"$ref": "#/definitions/processing_options"
}
]
}