IntroFig

Course Description

High throughput ‘omics studies generate ever larger datasets and, as a consequence, complex data interpretation challenges. This course focuses on the statistical concepts involved in preprocessing, quantification and differential analysis of high throughput omics data. Moreover, more advanced experimental designs and blocking will also be introduced. The core focus will be on shotgun proteomics and next generation sequencing. The course will rely exclusively on free and userfriendly opensource tools in R/Bioconductor. The course will provide a solid basis for beginners, but will also bring new perspectives to those already familiar with standard data analysis workflows for proteomics and next-generation sequencing applications.

Target Audience

This course is oriented towards biologists and bioinformaticians with a particular interest in differential analysis for quantitative ‘omics.

Prerequisites

The prerequisites for the Statistical Genomics course are the successful completion of a basic course of statistics that covers topics on data exploration and descriptive statistics, statistical modeling, and inference: linear models, confidence intervals, t-tests, F-tests, anova, chi-squared test.

The basis concepts may be revisited in my online course https://gtpb.github.io/PSLS20/ and in https://statomics.github.io/statistiekCursusNotas/

A primer to R and Data visualisation  in R can be found in:


Topics

Introduction

Part I: Quantitative proteomics

  1. Bioinformatics for proteomics
  2. Identification
  3. Preprocessing & Analysis of Label Free Quantitative Proteomics Experiments with Simple Designs
  4. Statistical Inference & Analysis of Experiments with Factorial Designs
  5. Reading Material and Technical details
  6. Stagewise testing: Omnibus test and post hoc analysis: slides

  7. Solutions

Part II: Next-generation sequencing

  1. Introduction to transcriptomics with next generation sequencing

  2. More Complex Designs

    • Researchers assessed the effect of spinal nerve ligation (SNL) on the transcriptome of rats. In this experiment, transcriptome profiling occurred at two weeks and two months after treatment, for both the SNL group and a control group. Two biological replicates are used for every treatment - time combination. The researchers are interested in early and late effects and in genes for which the effect changes over time. The data can be downloaded from the ReCount project website (http://bowtie-bio.sourceforge.net/recount/, dataset Hammer et al.). The following code can be used to download an R/Bioconductor expression set object.
     file <- "http://bowtie-bio.sourceforge.net/recount/ExpressionSets/hammer_eset.RData"
     load(url(file))
     hammer.eset
    
    • Paired-end sequencing was performed on primary cultures from parathyroid tumors of 4 patients at 2 time points over 3 conditions (control, treatment with diarylpropionitrile (DPN) and treatment with 4-hydroxytamoxifen (OHT)). DPN is a selective estrogen receptor agonist and OHT is a selective estrogen receptor modulator. One sample (patient 4, 24 hours, control) was omitted by the paper authors due to low quality. Data, the count table and information on the experiment is available at http://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSE37211. It is not required to do the read mapping!
  3. Technical details on transcriptomics with next generation sequencing. Generalized linear models are introduced in the slides and bulk RNA-seq tools via their corresponding papers

  4. DE analysis starting from transcript level counts

    • Soneson et al. 2016
    • Building index with salmon
       salmon index --gencode -t gencode.v32.transcripts.fa -i gencode.v32_salmon_index
      
    • Mapping one sample with salmon:
       salmon quant -i gencode.v32_salmon_index -l A --gcBias -1 SRR1039508_subset_1.fastq -2 SRR1039508_subset_2.fastq --validateMappings -o quant/SRR1039508_subset_quant
      
    • Intro to salmon
    • airway with DESeq2
    • airway with EdgeR
  5. Solutions


Part III: Single-cell RNA-sequencing

  1. Single-cell analysis: Concepts and a general workflow for single-cell RNA-sequencing (scRNA-seq) datasets.

  2. Selected topics in single-cell RNA-seq analysis.

    • Trajectory-based differential expression analysis: paper, slides, workshop.
    • Differential transcript usage analysis for scRNA-seq data: presentation of unpublished work.
    • Local FDR paper

Projects

Instructors