Skip to contents

[Superseded]

The DelayedArray backend has moved to a dedicated package: the ZarrArray package (https://github.com/Bioconductor/ZarrArray).

Usage

ZarrArray(...)

writeZarrArray(...)

Arguments

...

Passed to the new function in the ZarrArray package.

Examples

zarr_path <- system.file(
  "extdata",
  "zarr_examples",
  "column-first",
  "int32.zarr",
  package = "Rarr"
)
ZarrArray(
  zarr_path
)
#> Warning: `ZarrArray()` was deprecated in Rarr 1.12.0.
#>  Please use `ZarrArray::ZarrArray()` instead.
#>  The functions related to the DelayedArray backend have moved to the dedicated
#>   ZarrArray package (https://github.com/Bioconductor/ZarrArray).
#> <30 x 20 x 10> ZarrArray object of type "integer":
#> ,,1
#>        [,1]  [,2]  [,3]  [,4] ... [,17] [,18] [,19] [,20]
#>  [1,]     1     2     3     4   .    17    18    19    20
#>  [2,]     1     0     0     0   .     0     0     0     0
#>   ...     .     .     .     .   .     .     .     .     .
#> [29,]     1     0     0     0   .     0     0     0     0
#> [30,]     1     0     0     0   .     0     0     0     0
#> 
#> ...
#> 
#> ,,10
#>        [,1]  [,2]  [,3]  [,4] ... [,17] [,18] [,19] [,20]
#>  [1,]     0     0     0     0   .     0     0     0     0
#>  [2,]     0     0     0     0   .     0     0     0     0
#>   ...     .     .     .     .   .     .     .     .     .
#> [29,]     0     0     0     0   .     0     0     0     0
#> [30,]     0     0     0     0   .     0     0     0     0
#>