diff --git a/guideGlobalMetadata.json b/guideGlobalMetadata.json index 671e14938..ef5893021 100644 --- a/guideGlobalMetadata.json +++ b/guideGlobalMetadata.json @@ -31,6 +31,8 @@ "AxonaRecordingInterface", "VideoInterface", "NeuralynxRecordingInterface", + "Suite2pSegmentationInterface", + "AlphaOmegaRecordingInterface", "AlphaOmegaRecordingInterface", "DeepLabCutInterface", "SLEAPInterface", diff --git a/schemas/json/generated/Suite2pSegmentationInterface.json b/schemas/json/generated/Suite2pSegmentationInterface.json new file mode 100644 index 000000000..e5256c2f5 --- /dev/null +++ b/schemas/json/generated/Suite2pSegmentationInterface.json @@ -0,0 +1,37 @@ +{ + "required": [], + "properties": { + "Suite2pSegmentationInterface": { + "required": [ + "folder_path" + ], + "properties": { + "folder_path": { + "format": "directory", + "type": "string" + }, + "combined": { + "type": "boolean", + "default": false + }, + "plane_no": { + "type": "number", + "default": 0 + }, + "verbose": { + "type": "boolean", + "default": true + } + }, + "type": "object", + "additionalProperties": false + } + }, + "type": "object", + "additionalProperties": false, + "$schema": "http://json-schema.org/draft-07/schema#", + "$id": "source.schema.json", + "title": "Source data schema", + "description": "Schema for the source data, files and directories", + "version": "0.1.0" +} diff --git a/src/renderer/src/stories/pages/guided-mode/data/GuidedSourceData.js b/src/renderer/src/stories/pages/guided-mode/data/GuidedSourceData.js index a3414cf75..7d3011418 100644 --- a/src/renderer/src/stories/pages/guided-mode/data/GuidedSourceData.js +++ b/src/renderer/src/stories/pages/guided-mode/data/GuidedSourceData.js @@ -22,6 +22,8 @@ const propsToIgnore = [ "load_sync_channel", "stream_id", // NOTE: May be desired for other interfaces "nsx_override", + "combined", + "plane_no", ]; export class GuidedSourceDataPage extends ManagedPage {