OMERO.Analysis
The maintained user manual is available in docs/MANUAL.md and through the modeless Help window in OMERO.Analysis. Hardware-specific offline model guidance is available in docs/local-llm-recommendations.md.
OMERO.Analysis is a browser-local research workspace for OMERO.web. Its one Analysis shell has four standard routable tabs and one optional tab:
- Home — run saved artifacts or create an input-ready Method, Pipeline, or Notebook, with optional assistant help.
- Methods — run reusable Methods and inspect their durable run history and outputs.
- Pipelines — create or run ordered Method Pipelines and inspect their durable results.
- Notebooks — run-only Python nbformat-4 notebooks attached to OMERO.
- Assistant — AI-assisted development and testing of reusable Method scripts.
- Editor — optional structured editing for Methods, Pipelines, and Notebooks.
Analysis opens only the current Workspace selected in the OMERO center panel. The Explorer is rooted at that Workspace and does not expose an OMERO parent browser or alternate local Workspaces. A startup progress indicator reports Workspace restoration separately from the lazy browser-Python startup.
The Explorer and Artifact Inspector can be hidden independently from the header. Their browser-local visibility preference is remembered per user and group.
The Workspace explorer is organized as:
Workspace
├── Input
├── Methods
│ ├── Assistant
│ │ ├── <conversation>/Attachments
│ │ └── browser-local validation results
│ └── Methods results
├── Pipelines
│ └── Pipelines results
└── Notebooks
└── Notebooks results
Methods are reusable .py analyses. Pipelines are ordered, isolated Method
steps. Notebooks remain read-only in the Notebooks tab: Run resets the kernel, attaches current
inputs, and executes every cell in order. Users can stop execution, clear
outputs, reattach inputs, and inspect safe outputs. Editing is available only
when Enable artifact editor is turned on in Analysis Settings.
Privacy and execution
Data and notebook code execute in an opaque, no-network Pyodide sandbox. Notebook execution never calls the AI provider or loads Agent Skill packages. Raw notebook HTML and JavaScript are never rendered. Magics, shell commands, widgets, non-Python kernels, and arbitrary package downloads are rejected.
Each Assistant conversation can keep up to ten browser-local TXT, searchable PDF, DOCX, PNG, JPEG, or WebP attachments (25 MiB each). PDF and DOCX text is extracted in the offline Python sandbox; images are decoded, stripped of metadata, and resized in the browser when needed. The configured provider receives only extracted text or derived image pixels, never original PDF or DOCX bytes. OCR, webpages, authenticated file URLs, and silent context truncation are not supported.
The Method-authoring Assistant may load matching measurement-analysis skills from the optional
biomero-workflow-skills distribution. Explicit ZarrViewer requests use the
skill published by BIOMERO.ZarrViewer itself. Analysis starts with the generic Assistant
when either provider is absent.
OMERO.web integration
The deployment registers:
- one top link: Analysis (opens Home);
- one center panel: Analysis.
Image, Dataset, Plate, and Screen contexts are supported, including one
selection-specific Workspace for multiple Images or multiple Plates. Managed
Analysis Workspace, result, settings, and skills objects receive dedicated
resume or information panes instead of generic data-attachment controls.
Notebook upload automatically creates and links a FileAnnotation in namespace
nl.bioimaging.analysis.notebook.v1.
The standalone omero-jupyterlite package is deprecated and is explicitly
removed by the Analysis deployment image and update script. Existing OMERO
FileAnnotations are preserved.
AnalysisWorkspaces library
Automatic synchronization creates a private, managed +AnalysisWorkspaces Project for
the current user and group, then mirrors the browser Workspace into a Dataset.
Projects, Datasets, imported Images, and source links are discovered through
nl.bioimaging.analysis.sync.v1 MapAnnotations; an unmarked same-name Project
is never adopted.
Synchronization is automatic and incremental. Local reusable changes are
mirrored to OMERO, while deletion of a managed Workspace Dataset in OMERO
cascades back to the browser on launch, focus, or the periodic remote check.
Only a successfully confirmed deletion removes local data; unsynchronized
Workspaces and temporary connection failures are preserved. Synchronization
does not build or upload a complete Workspace ZIP. PNG outputs from direct
Method, Pipeline, and Notebook runs become real grayscale or RGB OMERO Images;
their other outputs, complete Method history, Pipelines, and validated Python
notebooks are stored as typed FileAnnotations. Source inputs are excluded,
except that ready inputs containing template anywhere in their filename are
synchronized under Templates for reuse. Assistant conversations, attachments,
and Assistant validation results always remain browser-local and are never
included in the managed mirror.
Unchanged objects are reused by stable key and SHA-256; managed remote
deletions follow local deletions. Unmanaged Dataset content is never changed.
The Workspace & OMERO menu can browse/reuse Methods, Pipelines, and Notebooks. Imports are independent local copies carrying library provenance. Pipeline imports also copy their exact Method-version dependencies. Imported notebooks select ready local inputs and open without running.
Default synchronization limits can be overridden with OMERO.web settings:
omero.web.analysis.max_sync_items: 10,000omero.web.analysis.max_upload_bytes: 256 MiB per itemomero.web.analysis.max_sync_changed_bytes: 512 MiB per synchronizationomero.web.analysis.max_png_pixels: 100 megapixels
The default attachment download transport limit is 2 GiB. Analysis also checks the browser Workspace ceiling and available storage before downloading; the server limit does not guarantee that a browser can safely hold the file.
Clean-break formats
Development-stage Project/Script/Workflow formats are intentionally not migrated.
- Browser database:
omero-analysis-workspaces, schema version 2. - Workspace snapshot:
- namespace/format
nl.bioimaging.analysis.workspace.v1; - filename
*.oa-workspace.zip; - root manifest
workspace.json.
- namespace/format
- Pipeline template:
- namespace/format
nl.bioimaging.analysis.pipeline.v1; - filename
*.oa-pipeline.json.
- namespace/format
Old .oa.zip, .oac.zip, .oa-workflow.json, legacy manifests, and old
browser databases are not read or deleted automatically.
Development
python scripts/bootstrap_dev.py
python -m pytest
cd frontend
npm ci
npm test
npm run build
npm run smoke:browser
Use --skip-frontend for a backend-only environment.
Build the wheel:
python scripts/build_frontend.py --skip-install
python -m build --wheel --no-isolation
python scripts/verify_wheel.py dist/omero_analysis-*.whl
Run the authenticated deployment smoke against an installed OMERO.web:
python scripts/smoke_omero_deployment.py https://omero.example \
--cookie "sessionid=..."
The same smoke can be run manually in CI with the OMERO_SMOKE_URL repository
variable and OMERO_SMOKE_COOKIE secret. It verifies the real container rather
than a mocked Django process.
Build the local OMERO.web image while preserving other baked-in plugins:
.\scripts\build-docker-image.ps1
BIOMERO.WorkflowSkills is not bundled by default. Include the optional local provider only when it is wanted and its sibling repository is available:
.\scripts\build-docker-image.ps1 -WithWorkflowSkills
API
POST /omero_analysis/api/context-token/
GET /omero_analysis/api/context/<object_type>/<object_id>/
GET /omero_analysis/api/attachments/<object_type>/<object_id>/
GET /omero_analysis/api/attachment/<annotation_id>/download/
POST /omero_analysis/api/attachments/<object_type>/<object_id>/upload/
GET|POST /omero_analysis/api/workspaces/<object_type>/<object_id>/snapshots/
GET /omero_analysis/api/workspace-snapshot/<annotation_id>/download/
GET|POST /omero_analysis/api/pipelines/<object_type>/<object_id>/templates/
GET /omero_analysis/api/pipeline-template/<annotation_id>/download/
GET /omero_analysis/api/notebook/<annotation_id>/download/
POST /omero_analysis/api/notebooks/<object_type>/<object_id>/upload/
GET /omero_analysis/api/workspace-sync/<object_type>/<object_id>/<workspace_id>/
POST /omero_analysis/api/workspace-sync/<object_type>/<object_id>/<workspace_id>/plan/
POST /omero_analysis/api/workspace-sync/<object_type>/<object_id>/<workspace_id>/apply/
DELETE /omero_analysis/api/workspace-sync/<object_type>/<object_id>/<workspace_id>/remove/
GET /omero_analysis/api/workspace-library/<object_type>/<object_id>/
GET /omero_analysis/api/workspace-library/item/<annotation_id>/download/
All object-bound endpoints require an OMERO login, active group context, short-lived context capability, and direct FileAnnotation membership checks.
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file omero_analysis-0.10.0.tar.gz.
File metadata
- Download URL: omero_analysis-0.10.0.tar.gz
- Upload date:
- Size: 57.7 MB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8b8087de133c701380631f0eaa6971899fa971932c5d2424723a74f7c32b01a4
|
|
| MD5 |
21a4a38bffe2ce2518095f0a91a4058d
|
|
| BLAKE2b-256 |
81c5f9d9d2fd91201daa2542df726a61dd837a4760f4454a8d8871346d022a6e
|
Provenance
The following attestation bundles were made for omero_analysis-0.10.0.tar.gz:
Publisher:
release.yml on NL-BioImaging/OMERO.Analysis
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
omero_analysis-0.10.0.tar.gz -
Subject digest:
8b8087de133c701380631f0eaa6971899fa971932c5d2424723a74f7c32b01a4 - Sigstore transparency entry: 2345632418
- Sigstore integration time:
-
Permalink:
NL-BioImaging/OMERO.Analysis@0f891cf7bed3f9ba83fd614b0e690cc7764d0fca -
Branch / Tag:
refs/tags/v0.10.0 - Owner: https://github.com/NL-BioImaging
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@0f891cf7bed3f9ba83fd614b0e690cc7764d0fca -
Trigger Event:
release
-
Statement type:
File details
Details for the file omero_analysis-0.10.0-py3-none-any.whl.
File metadata
- Download URL: omero_analysis-0.10.0-py3-none-any.whl
- Upload date:
- Size: 57.7 MB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
59e3751d3c272f10eb94e38bdd6bc5115c4d88a001cf2cba02ad4c4810ef64b3
|
|
| MD5 |
8937da3d1f0e1c5930334205c9b1d24d
|
|
| BLAKE2b-256 |
731a252f7ce710159cbac6e9322d26ac871c3ddaa44ab060bd0d6666e58b325e
|
Provenance
The following attestation bundles were made for omero_analysis-0.10.0-py3-none-any.whl:
Publisher:
release.yml on NL-BioImaging/OMERO.Analysis
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
omero_analysis-0.10.0-py3-none-any.whl -
Subject digest:
59e3751d3c272f10eb94e38bdd6bc5115c4d88a001cf2cba02ad4c4810ef64b3 - Sigstore transparency entry: 2345632526
- Sigstore integration time:
-
Permalink:
NL-BioImaging/OMERO.Analysis@0f891cf7bed3f9ba83fd614b0e690cc7764d0fca -
Branch / Tag:
refs/tags/v0.10.0 - Owner: https://github.com/NL-BioImaging
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@0f891cf7bed3f9ba83fd614b0e690cc7764d0fca -
Trigger Event:
release
-
Statement type: