-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnextflow_schema.json
executable file
·45 lines (45 loc) · 1.5 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
{
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "https://raw.githubusercontent.com/nextflow-io/hyperopt/master/nextflow_schema.json",
"title": "hyperopt pipeline parameters",
"description": "Pipeline for efficient experimental scheduling with Nextflow.",
"type": "object",
"definitions": {
"pipeline_options": {
"title": "Pipeline options",
"type": "object",
"description": "",
"default": "",
"fa_icon": "fas fa-terminal",
"properties": {
"fetch_dataset": {
"type": "boolean",
"description": "Fetch the data from Matterhorn Studio API.",
"default": true,
"fa_icon": "fas fa-download"
},
"project_id": {
"type": "string",
"description": "ID of Project on MHS",
},
"datadir": {
"type": "string",
"description": "Directory that contains any input datasets and pre-trained models",
"default": "data",
"fa_icon": "fas fa-folder-open"
},
"outdir": {
"type": "string",
"description": "Directory to publish output data",
"default": "results",
"fa_icon": "fas fa-folder-open"
}
}
}
},
"allOf": [
{
"$ref": "#/definitions/pipeline_options"
}
]
}