Introduction to Base R
2020-10-05
Preface
This introduction to base R course was designed for biologists with no previous programming experience. It has a focus on analysing RNA-sequencing data using the Bioconductor package limma. The F1000 paper ‘RNA-seq analysis is easy as 1-2-3 with limma, Glimma and edgeR’ was used as a guide for the later sessions.
It is intended to be delivered over four 2.5 hour workshops at the Walter and Eliza Hall Institute of Medical Research (WEHI).
0.1 Data files
You can download and unzip the files using the following commands
download.file("https://github.com/Shians/BaseR_Intro/raw/master/data/workshop_data.zip", "workshop_data.zip")
unzip("workshop_data.zip", exdir = "data")
unzip("data/Ses3_counts.zip", exdir = "data/counts")
Acknowledgements
- This course material was originally produced by Lucy Liu and later modified by Shian Su.
- Thanks to Brendan Ansell and Professor Gordon Smyth for your suggestions and review of this tutorial.
- This page was generated using the bookdown package by YiHui Xie.
The source code for this page can be found on Github.