forked from adamjtaylor/htan-artist
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathnextflow_schema.json
70 lines (70 loc) · 2.72 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
{
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "https://raw.githubusercontent.com/Sage-Bionetworks-Workflows/nf-artist/dsl2/nextflow_schema.json",
"title": "Sage-Bionetworks-Workflows/nf-artist parameters",
"description": "Nextflow pipeline for generating Minerva stories and Miniature thumbnails from multiplexed tissue imaging datasets",
"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"
}
}
},
"miniatue_options": {
"title": "Miniature options",
"type": "object",
"fa_icon": "fas fa-palette",
"description": "Define HTAN Artist pipeline parameters.",
"properties": {
"remove_bg": {
"type": "boolean",
"description": "Remove non-tissue background",
"default": true
},
"level": {
"type": "integer",
"description": "The pyramid level used in thumbnauls, Default: -1 (smallest)",
"default": -1
},
"dimred": {
"type": "string",
"description": "The dimensionality reduction method used",
"default": "umap",
"enum": ["umap", "tsne", "pca"]
},
"colormap": {
"type": "string",
"description": "The colormap used. Ensure colormap is compatiable with `n_components` selected ",
"enum": ["UCIE", "LAB", "RGB", "BREMM", "SCHUMANN", "STEIGER", "TEULING2", "ZIEGLER","CUBEDIAGONAL"],
"default": "UCIE"
},
"n_components": {
"type": "integer",
"description": "",
"default": 3,
"enum": [2,3]
}
}
}
},
"allOf": [
{
"$ref": "#/definitions/parameters"
}
]
}