@@ -8,18 +8,14 @@ output:
88 toc_float : true
99bibliography : references.bib
1010link-citations : true
11- abstract : >
12- Tidybulk is a comprehensive R package for modular transcriptomic data analysis that brings transcriptomics
13- to the tidyverse. It provides a unified interface for data transformation, normalization, filtering,
14- dimensionality reduction, clustering, differential analysis, cellularity analysis, and gene enrichment
15- with seamless integration of SummarizedExperiment objects and tidyverse principles.
11+
1612keywords : " transcriptomics, RNA-seq, differential expression, data analysis, tidyverse, SummarizedExperiment,
1713 bioinformatics, genomics, gene expression, clustering, dimensionality reduction, cellularity analysis,
1814 gene enrichment, R package"
1915vignette : >
20- %\VignetteEngine{knitr::knitr}
2116 %\VignetteIndexEntry{Overview of the tidybulk package}
22- %\usepackage[UTF-8]{inputenc}
17+ %\VignetteEngine{knitr::rmarkdown}
18+ %\VignetteEncoding{UTF-8}
2319---
2420
2521<!-- badges: start -->
@@ -142,7 +138,6 @@ library(magrittr)
142138library(forcats)
143139library(ggplot2)
144140library(ggrepel)
145- library(tidybulk)
146141library(SummarizedExperiment)
147142library(tidybulk)
148143
@@ -193,6 +188,8 @@ airway <-
193188 multiVals = "first"
194189))
195190
191+
192+
196193detach("package:org.Hs.eg.db", unload = TRUE)
197194detach("package:AnnotationDbi", unload = TRUE)
198195```
@@ -270,7 +267,7 @@ airway_abundant_cpm = airway |> keep_abundant(minimum_count_per_million = 10, m
270267
271268#### Compare methods
272269
273- ``` {r filtering-summary-statistics, fig.width = 10, fig.height = 10}
270+ ``` {r filtering-summary-statistics, fig.width = 10, fig.height = 10, warning = FALSE }
274271# Example: summary for default tidybulk filtering
275272# Before filtering
276273airway |> summarise(
0 commit comments