-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathnextflow_schema.json
83 lines (83 loc) · 2.64 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "https://raw.githubusercontent.com/./master/nextflow_schema.json",
"title": ". pipeline parameters",
"description": "NextFlow pipeline to run HistoQC",
"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": ["input", "outdir"],
"properties": {
"input": {
"type": "string",
"format": "file-path",
"mimetype": "text/csv",
"description": "Path to a CSV samplesheet"
},
"outDir": {
"type": "string",
"description": "Directory in which outputs are placed",
"default": "outputs"
}
}
},
"HistoQC options": {
"title": "HistoQC options",
"type": "object",
"fa_icon": "fas fa-solid fa-microscope",
"description": "Define parameters for HistoQC",
"required": ["config"],
"properties": {
"config": {
"type": "string",
"default": "default",
"enum": ["default", "ihc", "clinical", "first", "light", "v2.1"],
"description": "Name of built-in HistoQC config. Overridden by `custom_config`."
},
"custom_config": {
"type": "string",
"format": "file-path",
"mimetype": "text/plain",
"description": "Path to a HistoQC config `.ini` file. Overrides `config`"
},
"group": {
"title": "Output grouping",
"type": "boolean",
"description": "Arrange outputs into subfolders defined by the samplesheet `group` column"
}
}
},
"conversion_options": {
"title": "Conversion options",
"type": "object",
"fa_icon": "fas fa-solid fa-magic",
"description": "Define parameters used during conversion to openslide compatible tiff",
"properties": {
"convert": {
"type": "boolean",
"description": "Should images be converted to an openslide compatible tiff",
"hidden": true
},
"mag": {
"type": "integer",
"description": "Nominal magnification to inject into openslide compatible tiff",
"hidden": true
},
"mpp": {
"type": "number",
"description": "Image resolution (microns per pixel) to inject into openslide compatible tiff",
"hidden": true
}
}
}
},
"allOf": [
{
"$ref": "#/definitions/input_parameters"
}
]
}