Skip to content

sheffield-bioinformatics-core/r4biol

Repository files navigation

R for Biological Data Analysis

Part 1 (R for Medical Data)

Overview

  • Importing example "medical data" from a spreadsheet
  • selecting columns
  • restricting rows with filter
  • summarising data, and grouping
  • boxplots and bar plots
  • "piping" to create short workflows

Pre-course package install

Please install the following packages before the course using the following code:-

install.packages(c("readr",
                  "dplyr",
                  "ggplot2",
                  "stringr",
                  "forcats"))

Pre-course downloads

Please download all these files and place in a folder that you wish to work in

Materials

Part 2 (R for omics analysis)

Overview

  • Importing some RNA-sequencing counts
  • Using PCA as QC diagnostic
  • Differential expression to find statistically-significant genes
  • Using databases to map between gene naming schemes
  • Associating statistical findings with biological and clinical significance

Package Install

Please install the following packages before the course using the following code:-

install.packages("BiocManager")
BiocManager::install(c("SummarizedExperiment",
                      "tidybulk",
                      "org.Hs.eg.db",
                      "EnhancedVolcano",
                      "ggrepel"))

Download before the course

Rendered Materials

About

R for Biological Data Analysis

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages