From 048f2ef1d6cf585561c3f6eb08260999ace27e44 Mon Sep 17 00:00:00 2001 From: igor <6363505+igordot@users.noreply.github.com> Date: Mon, 6 May 2024 14:10:33 -0400 Subject: [PATCH] Update vignettes --- DESCRIPTION | 4 ++-- vignettes/clustermole-intro.Rmd | 2 +- vignettes/db.Rmd | 2 +- vignettes/example-bm-seurat.Rmd | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/DESCRIPTION b/DESCRIPTION index db2c2bd..43c94a5 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,7 +1,7 @@ Type: Package Package: clustermole Title: Unbiased Single-Cell Transcriptomic Data Cell Type Identification -Version: 1.1.1 +Version: 1.1.1.9000 Authors@R: person("Igor", "Dolgalev", , "igor.dolgalev@nyumc.org", role = c("aut", "cre"), comment = c(ORCID = "0000-0003-4451-126X")) Description: Assignment of cell type labels to single-cell RNA sequencing (scRNA-seq) clusters is often a time-consuming process that involves manual inspection of the cluster marker genes complemented with a detailed literature search. This is especially challenging when unexpected or poorly described populations are present. The clustermole R package provides methods to query thousands of human and mouse cell identity markers sourced from a variety of databases. @@ -31,4 +31,4 @@ VignetteBuilder: knitr biocViews: Encoding: UTF-8 -RoxygenNote: 7.2.3 +RoxygenNote: 7.3.1 diff --git a/vignettes/clustermole-intro.Rmd b/vignettes/clustermole-intro.Rmd index 10e2d7d..0b8d4b9 100644 --- a/vignettes/clustermole-intro.Rmd +++ b/vignettes/clustermole-intro.Rmd @@ -38,7 +38,7 @@ install.packages("clustermole") Load clustermole. -```{r load-package, message=FALSE} +```{r load-package, message=FALSE, warning=FALSE} library(clustermole) ``` diff --git a/vignettes/db.Rmd b/vignettes/db.Rmd index 034df22..690db88 100644 --- a/vignettes/db.Rmd +++ b/vignettes/db.Rmd @@ -11,7 +11,7 @@ knitr::opts_chunk$set( We will load clustermole along with dplyr to help with summarizing the data. -```{r setup, message=FALSE} +```{r load-libraries, message=FALSE, warning=FALSE} library(clustermole) library(dplyr) ``` diff --git a/vignettes/example-bm-seurat.Rmd b/vignettes/example-bm-seurat.Rmd index 5d7cbbc..507b171 100644 --- a/vignettes/example-bm-seurat.Rmd +++ b/vignettes/example-bm-seurat.Rmd @@ -24,7 +24,7 @@ This experiment was selected because it includes both well-known as well as rare Load relevant packages. -```{r load-libraries, message=FALSE} +```{r load-libraries, message=FALSE, warning=FALSE} library(Seurat) library(dplyr) library(ggplot2)