-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnextflow_schema.json
55 lines (55 loc) · 2.1 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/IPK-BIT/divassociate/main/nextflow_schema.json",
"title": "Nextflow pipeline parameters",
"description": "This pipeline uses Nextflow and processes some kind of data. The JSON Schema was built using the nf-core pipeline schema builder.",
"type": "object",
"definitions": {
"input_output_parameters": {
"title": "Input/ Output Parameters",
"type": "object",
"description": "Parameters to defined the input and output",
"default": "",
"properties": {
"samples": {
"type": "string",
"description": "Path to CSV file containing the germplasm IDs",
"format": "file-path",
"mimetype": "text/csv",
"fa_icon": "fas fa-file-alt"
},
"vcf": {
"type": "string",
"format": "file-path",
"description": "Path to the VCF file used for the association test.",
"fa_icon": "fas fa-file",
"mimetype": "application/vcf"
},
"observations": {
"type": "string",
"description": "Path to CSV file containing the sample ID and the variable observations",
"format": "file-path",
"mimetype": "text/csv",
"fa_icon": "fas fa-file-alt"
},
"outdir": {
"type": "string",
"format": "directory-path",
"description": "Path to an output directory where the results are written.",
"fa_icon": "fas fa-folder-open"
}
},
"required": [
"outdir",
"samples",
"vcf",
"observations"
]
}
},
"allOf": [
{
"$ref": "#/definitions/input_output_parameters"
}
]
}