From a217352265d7a5f21df92cdd1755ec4cf32d7615 Mon Sep 17 00:00:00 2001 From: Robrecht Cannoodt Date: Fri, 11 Oct 2024 10:24:46 +0200 Subject: [PATCH] minor fix in usage vignette --- vignettes/usage.Rmd | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/vignettes/usage.Rmd b/vignettes/usage.Rmd index 6865dbe..2db22b6 100644 --- a/vignettes/usage.Rmd +++ b/vignettes/usage.Rmd @@ -14,10 +14,6 @@ knitr::opts_chunk$set( ) ``` -```{r setup} -library(laminr) -``` - LaminDB is an open-source data framework for biology. You can find out about some of its features in the [documentation of the lamindb Python package](https://docs.lamin.ai/introduction). This vignette will show you how to use the `laminr` package to interact with LaminDB. @@ -43,6 +39,8 @@ This vignette uses the [`laminlabs/cellxgene`](https://lamin.ai/laminlabs/cellxg You can connect to the instance using the `connect` R function: ```{r connect} +library(laminr) + db <- connect("laminlabs/cellxgene") ```