-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnextflow_schema.json
More file actions
79 lines (79 loc) · 2.66 KB
/
Copy pathnextflow_schema.json
File metadata and controls
79 lines (79 loc) · 2.66 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
70
71
72
73
74
75
76
77
78
79
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/BioimageAnalysisCoreWEHI/opal_inform_stitch/main/nextflow_schema.json",
"title": "opal_inform_stitch pipeline parameters",
"description": "Nextflow pipeline for stitching Opal/inForm images from Vectra Polaris in parallel",
"type": "object",
"$defs": {
"input_output_options": {
"title": "Input/output options",
"type": "object",
"required": ["base_dir", "outdir"],
"properties": {
"base_dir": {
"type": "string",
"format": "directory-path",
"exists": true,
"description": "Base directory containing one subdirectory per slide/sample. Each subdirectory must contain component_data TIFF tiles from inForm."
},
"outdir": {
"type": "string",
"format": "directory-path",
"description": "Output directory for stitched OME-TIFF files."
},
"publish_dir_mode": {
"type": "string",
"default": "copy",
"description": "Method used by Nextflow publishDir to stage output files.",
"enum": ["symlink", "rellink", "link", "copy", "copyNoFollow", "move"]
}
}
},
"roi_finder_options": {
"title": "ROI finder options",
"type": "object",
"properties": {
"roi_finder": {
"type": "boolean",
"default": false,
"description": "Detect individual tissue regions and write one OME-TIFF per ROI instead of a single stitched image. Useful when a slide contains multiple spatially separated tissue sections."
},
"roi_scale": {
"type": "integer",
"default": 8,
"minimum": 1,
"description": "Downscale factor for the occupancy map used in ROI detection. Higher values are faster but may merge nearby tissue sections."
}
}
},
"generic_options": {
"title": "Generic options",
"type": "object",
"properties": {
"help": {
"type": "boolean",
"default": false,
"description": "Display help text.",
"hidden": true
},
"version": {
"type": "boolean",
"default": false,
"description": "Display version and exit.",
"hidden": true
},
"monochrome_logs": {
"type": "boolean",
"default": false,
"description": "Do not use coloured log outputs.",
"hidden": true
}
}
}
},
"allOf": [
{ "$ref": "#/$defs/input_output_options" },
{ "$ref": "#/$defs/roi_finder_options" },
{ "$ref": "#/$defs/generic_options" }
]
}