addedInput schema / $defs / PreprocessingParameters / additionalProperties
Added value: +false
removedInput schema / $defs / PreprocessingParameters / properties / clustering_key
Removed value: -{
- "default": "leiden",
- "description": "Key name for clustering results in obs.",
- "title": "Clustering Key",
- "type": "string"
-}
removedInput schema / $defs / PreprocessingParameters / properties / clustering_resolution
Removed value: -{
- "default": 1,
- "description": "Leiden clustering resolution. Higher (1.5-2.0) for more clusters, lower (0.2-0.5) for fewer.",
- "exclusiveMinimum": 0.1,
- "maximum": 2,
- "title": "Clustering Resolution",
- "type": "number"
-}
removedInput schema / $defs / PreprocessingParameters / properties / n_neighbors
Removed value: -{
- "default": 15,
- "description": "Neighbors for k-NN graph. Larger (20-50) for global structure, smaller (5-10) for local patterns.",
- "exclusiveMinimum": 2,
- "maximum": 100,
- "title": "N Neighbors",
- "type": "integer"
-}
removedInput schema / $defs / PreprocessingParameters / properties / n_pcs
Removed value: -{
- "default": 30,
- "description": "Number of principal components for PCA.",
- "exclusiveMinimum": 0,
- "maximum": 100,
- "title": "N Pcs",
- "type": "integer"
-}
addedInput schema / additionalProperties
Added value: +false
addedOutput schema / additionalProperties
Added value: +false
addedOutput schema / properties / clusters / description
Added value: +"Clusters computed during preprocessing. This is zero because clustering is performed by compute_embeddings."
changedOutput schema / properties / qc_metrics / anyOf
Previous value: -[
- {
- "additionalProperties": true,
- "type": "object"
- },
- {
- "type": "null"
- }
-]New value: +[
+ {
+ "additionalProperties": {
+ "anyOf": [
+ {
+ "type": "integer"
+ },
+ {
+ "type": "number"
+ },
+ {
+ "type": "boolean"
+ },
+ {
+ "type": "string"
+ }
+ ]
+ },
+ "type": "object"
+ },
+ {
+ "type": "null"
+ }
+]
addedOutput schema / properties / warnings
Added value: +{
+ "description": "Non-fatal conditions that may affect result interpretation.",
+ "items": {
+ "type": "string"
+ },
+ "title": "Warnings",
+ "type": "array"
+}