Skip to content

Commit de9acf9

Browse files
authored
Fix software design vignette (#438)
1 parent 196ba3e commit de9acf9

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

vignettes/articles/software_design.Rmd

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,12 @@ knitr::opts_chunk$set(
1818

1919
# Introduction
2020

21-
`r Biocpkg("anndataR")` is designed to be an R native implementation of the `AnnData` object, inspired by the of the following packages:
21+
`r Biocpkg("anndataR")` is designed to be an R native implementation of the `AnnData` object, inspired by the following packages:
2222

2323
* [_anndata_](https://anndata.readthedocs.io/en/stable/) ([scverse/anndata](https://github.com/scverse/anndata)): The Python `anndata` package and on-disk specification
2424
* `r Biocpkg("zellkonverter")` ([theislab/zellkonverter](https://github.com/theislab/zellkonverter)): Convert `AnnData` files to/from `SingleCellExperiment` objects
2525
* `r Githubpkg("mtmorgan/h5ad")`: Read/write `*.h5ad` files natively using `r Biocpkg("rhdf5")`
26-
* `r CRANpkg("anndataR")` ([dynverse/anndata](https://github.com/dynverse/anndata)): An R implementation of the `AnnData` data structures, uses `r CRANpkg("reticulate")` to read/write `*.h5ad` files
26+
* `r CRANpkg("anndata")` ([dynverse/anndata](https://github.com/dynverse/anndata)): An R implementation of the `AnnData` data structures, uses `r CRANpkg("reticulate")` to read/write `*.h5ad` files
2727

2828
Ideally, this package will be a complete replacement for all of these packages, and will be the go-to package for working with `AnnData` files in R.
2929

@@ -48,7 +48,7 @@ The different `AnnData` classes provide a consistent interface but store and acc
4848
It is want you will want to use in most cases where you want to interact with an `AnnData` object.
4949
- The `HDF5AnnData` provides an interface to a H5AD file and minimal data is stored in memory until it is requested by the user.
5050
It is primarily designed as an intermediate object when reading/writing H5AD files but can be useful for accessing parts of large files.
51-
- The `ReticulateAnnData` access data stored in an `AnnData` object in a concurrent Python session.
51+
- The `ReticulateAnnData` accesses data stored in an `AnnData` object in a concurrent Python session.
5252
This comes with the overhead and complexity of using `r CRANpkg("reticulate")` but is sometimes useful to access functionality that has not yet been implemented in `r Biocpkg("anndataR")`.
5353
- The planned `ZarrAnnData` will provide an interface to an `AnnData` Zarr store, similar to `HDF5AnnData`.
5454
- An `AnnDataView` is returned when subsetting an `AnnData` object and provides access to a subset of the data in the referenced object.

0 commit comments

Comments
 (0)