Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Suite2pSegmentationInterface #460

Merged
merged 8 commits into from
Jan 9, 2024
2 changes: 2 additions & 0 deletions guideGlobalMetadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@
"AxonaRecordingInterface",
"VideoInterface",
"NeuralynxRecordingInterface",
"Suite2pSegmentationInterface",
"AlphaOmegaRecordingInterface",
"AlphaOmegaRecordingInterface",
"DeepLabCutInterface",
"SLEAPInterface",
Expand Down
37 changes: 37 additions & 0 deletions schemas/json/generated/Suite2pSegmentationInterface.json
Original file line number Diff line number Diff line change
@@ -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"
}
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
Loading