- Stefano Mangiola <mangiola.s at wehi.edu.au>
Material web page.
More details on the workshop are below.
For the tidygenomics2022 workshop, an RStudio in the cloud will be provided with everything installed, all that participants will need is a web browser.
If you want to install the packages and material post-workshop, the instructions are below. The workshop is designed for R 4.1
and Bioconductor 3.14.
#install.packages('remotes')
# Need to set this to prevent installation erroring due to even tiny warnings, similar to here: https://github.com/r-lib/remotes/issues/403#issuecomment-748181946
Sys.setenv("R_REMOTES_NO_ERRORS_FROM_WARNINGS" = "true")
# Install same versions used in the workshop
remotes::install_github(c("stemangiola/[email protected]", "stemangiola/[email protected]"))
# Install workshop package
remotes::install_github("tidytranscriptomics-workshops/LoveMangiola2022_tidytranscriptomics", build_vignettes = TRUE)
# To view vignettes
library(LoveMangiola2022tidytranscriptomics)
browseVignettes("LoveMangiola2022tidytranscriptomics")
To run the code, you could then copy and paste the code from the workshop vignette or R markdown file into a new R Markdown file on your computer.
This tutorial will present how to perform analysis of single-cell RNA sequencing data following the tidy data paradigm. The tidy data paradigm provides a standard way to organise data values within a dataset, where each variable is a column, each observation is a row, and data is manipulated using an easy-to-understand vocabulary. Most importantly, the data structure remains consistent across manipulation and analysis functions.
This can be achieved with the integration of packages present in the R CRAN and Bioconductor ecosystem, including tidyseurat, tidySingleCellExperiment and tidyverse. These packages are part of the tidytranscriptomics suite that introduces a tidy approach to RNA sequencing data representation and analysis. For more information see the tidy transcriptomics blog.
- Basic familiarity with single cell transcriptomic analyses
- Basic familiarity with tidyverse
The workshop format is a 2 hour session consisting of hands-on demos, exercises and Q&A.
- tidyseurat
- tidySingleCellExperiment
- org.Hs.eg.db
- ggrepel
- GGally
- plotly
In exploring and analysing RNA sequencing data, there are a number of key concepts, such as filtering, scaling, dimensionality reduction, hypothesis testing, clustering and visualisation, that need to be understood. These concepts can be intuitively explained to new users, however, (i) the use of a heterogeneous vocabulary and jargon by methodologies/algorithms/packages, (ii) the complexity of data wrangling, and (iii) the coding burden, impede effective learning of the statistics and biology underlying an informed RNA sequencing analysis.
The tidytranscriptomics approach to RNA sequencing data analysis abstracts out the coding-related complexity and provides tools that use an intuitive and jargon-free vocabulary, enabling focus on the statistical and biological challenges.
- To approach data representation and analysis though a tidy data paradigm, integrating tidyverse with tidyseurat, tidySingleCellExperiment and tidyHeatmap.
- Basic tidy operations possible with tidyseurat and tidySingleCellExperiment
- The differences between Seurat and SingleCellExperiment representation, and tidy representation
- How to interface Seurat and SingleCellExperiment with tidy manipulation and visualisation
- A real-world case study that will showcase the power of tidy single-cell methods compared with base/ad-hoc methods
- The molecular technology of single-cell sequencing
- The fundamentals of single-cell data analysis
- The fundamentals of tidy data analysis