tidyomics / tidyomicsWorkshop

Tidy genomic and transcriptomic analyses
https://tidyomics.github.io/tidyomicsWorkshop/
Other
1 stars 5 forks source link

tidyomicsWorkshop

DOI .github/workflows/basic_checks.yaml

tidybulk

Instructor names and contact information

Syllabus

Material web page.

More details on the workshop are below.

Workshop package installation

If you want to install the packages and material post-workshop, the instructions are below. The workshop is designed for R 4.3 and Bioconductor 3.17.

#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
BiocManager::install("stemangiola/tidyseurat@v0.5.4")
BiocManager::install("stemangiola/tidySingleCellExperiment@v1.9.1")
BiocManager::install("stemangiola/tidybulk@v1.11.1")
BiocManager::install("stemangiola/tidySummarizedExperiment@v1.9.2")
BiocManager::install("satijalab/seurat-wrappers")

# Install workshop package

remotes::install_github("tidybiology/tidyomicsWorkshop", build_vignettes = TRUE)

# To view vignettes
library(tidyomicsWorkshop)
browseVignettes("tidyomicsWorkshop")

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.

Workshop Description

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.

Pre-requisites

Workshop Participation

The workshop format is a 45 minute session consisting of hands-on demos, exercises and Q&A.

R / Bioconductor packages used

Workshop goals and objectives

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.

Learning goals

What you will learn

What you will not learn