The problem — Raw acquisition files arrive in dozens of proprietary formats: ND2, CZI, SVS, LIF, MRXS, raw camera streams. Without a conversion step that preserves the full data model — dimension order, pixel size, channel identities, z-spacing, time index — those files are pixels without context. A pipeline that silently misreads a channel or drops a z-dimension will produce numerically plausible outputs that are biologically wrong.
What it is / how it works — Ingest translates proprietary formats into a canonical, analysis-ready representation. Bio-Formats reads over 150 vendor formats and exposes a common OME data model; the output target is OME-NGFF / OME-Zarr — a chunked, multiscale pyramid stored in cloud-compatible object storage. Chunking is not cosmetic: a light-sheet volume or whole-slide image that cannot be lazily sliced cannot be analyzed at all. For HCS plates (Cell Painting), ingest also encodes the plate / well / site / field hierarchy so every downstream QC and profiling query can index by well without a secondary join.
Where it breaks — Ingest failures are silent. A format reader that mis-parses channel order delivers a five-channel Cell Painting plate with MitoTracker and DAPI swapped — an error that propagates through segmentation and profiling with no pipeline exception. Chunking mismatches (wrong chunk shape for the access pattern) translate into I/O thrash that looks like a compute bottleneck. The fix is a validation step immediately after ingest: check OME metadata against the acquisition manifest, assert dimension labels, and fail loudly before any downstream stage runs. This upstream contract is what makes Data Standards and Scalable Storage enforceable and feeds a trustworthy run manifest.