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

Update README.md #62

Merged
merged 1 commit into from
Dec 8, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
49 changes: 45 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,51 @@
# ZarrReader
# OMEZarrReader

Requires custom jzarr: https://github.com/dgault/jzarr/tree/ome-zarr
The OMEZarrReader provides support for reading data following the [NGFF](https://ngff.openmicroscopy.org/)
specificaiton. It uses the [JZarr](https://github.com/zarr-developers/jzarr) library from [Maven Central](https://central.sonatype.com/artifact/dev.zarr/jzarr/) for accessing the underlying Zarr data.

Requires Bio-Formats update to add reader: https://github.com/ome/bioformats/pull/3639
## Installation

Known Issues/TODO list:
### Fiji Update Site

The OMEZarrReader has been added to the Bio-Formats development update site
(https://sites.imagej.net/Bio-Formats). Be aware that activating it will use
a newer version of Bio-Formats.

### Maven

The jar from this repository can be used in your own code by enabling the OME artifactory repositry:

```
<repositories>
<repository>
<snapshots>
<enabled>false</enabled>
</snapshots>
<id>central</id>
<name>repo</name>
<url>https://artifacts.openmicroscopy.org/artifactory/repo</url>
</repository>
</repositories>
```
and adding the dependency:
```
<dependency>
<groupId>ome</groupId>
<artifactId>OMEZarrReader</artifactId>
<version>${OMEZarrReader.version}</version>
</dependency>
```

### Bio-Formats tools

If you would like to use OMEZarrReader with the bftools suite, you will need to set the `BC_CP`
environment variable to include the jar which includes all dependencies:

```
BF_CP=target/OMEZarrReader-with-dependencies.jar showinf -nopix your.ome.zarr/.zattrs
```

## Known Issues/TODO list
- Currently working on packaging, discovered issue when connecting to S3 using packaged jar
- S3 File System Store is likely not ideal sceanrio, other options to be investigated
- S3 access currently very inefficient
Expand Down