Skip to content

Commit

Permalink
[r] Update changed URL in three vignette files (#2632) (#2633)
Browse files Browse the repository at this point in the history
Co-authored-by: Dirk Eddelbuettel <[email protected]>
  • Loading branch information
github-actions[bot] and eddelbuettel authored May 23, 2024
1 parent 08934a2 commit a1f894c
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
1 change: 1 addition & 0 deletions apis/r/.Rbuildignore
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ tiledbsoma.tar.gz
src/libtiledbsoma/build
src/libtiledbsoma/test
src/libtiledbsoma/docs
src/libtiledbsoma/.editorconfig

# vscode
^\.vscode$
Expand Down
6 changes: 3 additions & 3 deletions apis/r/vignettes/soma-experiment-queries.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ library(tiledbsoma)

## Example data

Load the bundled `SOMAExperiment` containing a subsetted version of the 10X genomics [PBMC dataset](https://mojaveazure.github.io/seurat-object/reference/pbmc_small.html) provided by SeuratObject. This will return a `SOMAExperiment` object.
Load the bundled `SOMAExperiment` containing a subsetted version of the 10X genomics [PBMC dataset](https://satijalab.github.io/seurat-object/reference/pbmc_small.html) provided by SeuratObject. This will return a `SOMAExperiment` object.

```{r}
experiment <- load_dataset("soma-exp-pbmc-small")
Expand Down Expand Up @@ -103,7 +103,7 @@ iterator$read_next()
iterator$read_complete()
```

We can also access the expression via `X()`.
We can also access the expression via `X()`.

Similarly to `obs()` and `var()`, `X()` is intended for iteration, but in this case we have access to two different iterators, and thus `X()` returns a reader that gives you access to an iterator for `arrow::Table` and one for `Matrix::sparse_matrix`.

Expand Down Expand Up @@ -168,7 +168,7 @@ As well as the X matrix in two different formats:
```{r}
query$X("counts")$tables()$concat()
```

`Matrix::sparse_matrix` in `dgTMatrix` format.

```{r}
Expand Down
2 changes: 1 addition & 1 deletion apis/r/vignettes/soma-objects.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ library(tiledbsoma)

## Example data

Extract the bundled `SOMAExperiment` containing a subsetted version of the 10X genomics [PBMC dataset](https://mojaveazure.github.io/seurat-object/reference/pbmc_small.html) provided by `SeuratObject`. This will return a file path for the extracted dataset.
Extract the bundled `SOMAExperiment` containing a subsetted version of the 10X genomics [PBMC dataset](https://satijalab.github.io/seurat-object/reference/pbmc_small.html) provided by `SeuratObject`. This will return a file path for the extracted dataset.

```{r}
uri <- extract_dataset("soma-exp-pbmc-small")
Expand Down
2 changes: 1 addition & 1 deletion apis/r/vignettes/soma-reading.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ library(tiledbsoma)

## Example data

Load the bundled `SOMAExperiment` containing a subsetted version of the 10X genomics [PBMC dataset](https://mojaveazure.github.io/seurat-object/reference/pbmc_small.html) provided by SeuratObject. This will return a `SOMAExperiment` object. This is a small dataset that easily fits into memory, but we'll focus on operations that can easily scale to larger datasets as well.
Load the bundled `SOMAExperiment` containing a subsetted version of the 10X genomics [PBMC dataset](https://satijalab.github.io/seurat-object/reference/pbmc_small.html) provided by SeuratObject. This will return a `SOMAExperiment` object. This is a small dataset that easily fits into memory, but we'll focus on operations that can easily scale to larger datasets as well.

```{r}
experiment <- load_dataset("soma-exp-pbmc-small")
Expand Down

0 comments on commit a1f894c

Please sign in to comment.