Skip to content
Merged
13 changes: 6 additions & 7 deletions nextflow_schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
}
}
},
"miniatue_options": {
"miniature_options": {
"title": "Miniature options",
"type": "object",
"fa_icon": "fas fa-palette",
Expand All @@ -38,7 +38,7 @@
},
"level": {
"type": "integer",
"description": "The pyramid level used in thumbnauls, Default: -1 (smallest)",
"description": "The pyramid level used in thumbnails, Default: -1 (smallest)",
"default": -1
},
"dimred": {
Expand All @@ -49,22 +49,21 @@
},
"colormap": {
"type": "string",
"description": "The colormap used. Ensure colormap is compatiable with `n_components` selected ",
"description": "The colormap used. Ensure colormap is compatible with `n_components` selected ",
"enum": ["UCIE", "LAB", "RGB", "BREMM", "SCHUMANN", "STEIGER", "TEULING2", "ZIEGLER","CUBEDIAGONAL"],
"default": "UCIE"
},
"n_components": {
"type": "integer",
"description": "",
"description": "Number of components for dimensionality reduction",
"default": 3,
"enum": [2,3]
}
}
}
},
"allOf": [
{
"$ref": "#/definitions/parameters"
}
{ "$ref": "#/definitions/input_output_options" },
{ "$ref": "#/definitions/miniature_options" }
]
}