You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
**{anndataR}** aims to make the AnnData format a first-class citizen in
9
-
the R ecosystem, and to make it easy to work with AnnData files in R,
10
-
either directly or by converting them to a SingleCellExperiment or Seurat
11
-
object.
7
+
**{anndataR}** aims to make the `AnnData` format a first-class citizen in the R ecosystem, and to make it easy to work with AnnData files in R, either directly or by converting them to a `SingleCellExperiment` or `Seurat` object.
12
8
13
9
**{anndataR}** is an scverse® community project maintained by [Data Intuitive](https://data-intuitive.com/), and is fiscally sponsored by the [Chan Zuckerberg Initiative](https://chanzuckerberg.com/).
14
10
15
-
16
11
## Features of {anndataR}
17
12
18
-
- Provide an `R6` class to work with AnnData objects in R (either in-memory or on-disk).
13
+
- Provide an `R6` class to work with `AnnData` objects in R (either in-memory or on-disk)
19
14
- Read/write `*.h5ad` files natively
20
15
- Convert to/from `SingleCellExperiment` objects
21
16
- Convert to/from `Seurat` objects
22
17
23
-
> [!WARNING]
24
-
>
25
-
> This package is still in the experimental stage, and may not work as
26
-
> expected. You can find the status of development of anndataR on the
> of the website. Please [report](https://github.com/scverse/anndataR/issues) any issues you encounter.
18
+
You can find the status of development of **{anndataR}** on the [feature tracking page](https://anndatar.data-intuitive.com/articles/design.html#feature-tracking) of the package website.
19
+
Please [report](https://github.com/scverse/anndataR/issues) any issues you encounter.
29
20
30
21
## Installation
31
22
@@ -74,17 +65,13 @@ pak::pak("scverse/anndataR")
74
65
75
66
Take note that you need all suggested dependencies available, and that building them can take some time.
76
67
77
-
-**Getting started**: An introduction to the package and its features.
68
+
-[**Getting started**](https://anndatar.data-intuitive.com/articles/anndataR.html): An introduction to the package and its features.
78
69
`vignette("anndataR", package = "anndataR")`
79
-
-**Reading and writing H5AD files**: How to read and write `*.h5ad` files.
80
-
`vignette("usage_h5ad", package = "anndataR")`
81
-
-**Converting to/from Seurat objects**: How to convert between `AnnData` and `Seurat` objects.
70
+
-[**Read/write `Seurat` objects**](https://anndatar.data-intuitive.com/articles/usage_seurat.html): How to convert between `AnnData` and `Seurat` objects.
82
71
`vignette("usage_seurat", package = "anndataR")`
83
-
-**Converting to/from SingleCellExperiment objects**: How to convert between `AnnData` and `SingleCellExperiment` objects.
72
+
-[**Read/write `SingleCellExperiment` objects**](https://anndatar.data-intuitive.com/articles/usage_singlecellexperiment.html): How to convert between `AnnData` and `SingleCellExperiment` objects
Copy file name to clipboardExpand all lines: vignettes/anndataR.Rmd
+25-15Lines changed: 25 additions & 15 deletions
Original file line number
Diff line number
Diff line change
@@ -28,13 +28,11 @@ library(SingleCellExperiment)
28
28
## Introduction
29
29
**{anndataR}** allows users to work with `.h5ad` files, access various slots in the datasets and convert these files to `SingleCellExperiment` objects or `Seurat` objects, and vice versa.
30
30
This enables users to move data easily between the different programming languages and analysis ecosystems needed to perform single-cell data analysis.
31
-
This package differs from [zellkonverter](https://bioconductor.org/packages/release/bioc/html/zellkonverter.html) because it reads and writes these `.h5ad` files natively in R, and allows conversion to and from `Seurat` objects as well.
32
-
33
-
Check out `?anndataR` for a full list of the functions provided by this package.
31
+
This package differs from [**{zellkonverter}**](https://bioconductor.org/packages/release/bioc/html/zellkonverter.html) because it reads and writes these `.h5ad` files natively in R, and allows conversion to and from `Seurat` objects as well as `SingleCellExperiment`.
34
32
35
33
## Installation
36
34
37
-
Install using either **BiocManager** or from GitHub using **pak**:
35
+
Install using either **{BiocManager}** or from GitHub using **{pak}**:
38
36
39
37
```{r, eval = FALSE}
40
38
if (!requireNamespace("BiocManager", quietly = TRUE)) {
0 commit comments