Summary and Schedule
This is a new lesson built with The Carpentries Workbench.
| Setup Instructions | Download files required for the lesson | |
| Duration: 00h 00m | 1. Using RMarkdown | How do you write a lesson using R Markdown and sandpaper? |
| Duration: 00h 12m | 2. Objectives | |
| Duration: 00h 27m | 3. Why is a good experimental design vital? | |
| Duration: 00h 37m | 4. Terminology | |
| Duration: 00h 57m | 5. The importance of replicates to estimate variance | |
| Duration: 01h 17m | 6. How many replicates and how many reads do I need? | |
| Duration: 01h 32m | 7. Sequencing options to consider | |
| Duration: 01h 47m | 8. Summary | |
| Duration: 01h 57m | Finish |
The actual schedule may vary slightly depending on the topics and exercises chosen by the instructor.
Please follow the steps below and install the required software before the scheduled workshop.
RStudio Setup
We use RStudio for coding in R.
Click here and follow the instructions to install RStudio Desktop in your system.
R packages
Most workshops using R will require the installation of specific packages. Make sure to check in advance with the workshop organisers what packages need to be installed.
You can install packages from CRAN using:
R
install.packages("package_name")
If your package is in a different R repository, such as Bioconductor or GitHub, you may need the BiocManager or devtools packages to install them. To install BiocManager:
R
if (!require("BiocManager", quietly = TRUE))
install.packages("BiocManager")
BiocManager::install()
For devtools, you can simply do:
R
install.packages("devtools")
You can then install packages directly from GitHub with:
R
devtools::install_github("username/reponame")