Please follow these steps to install the required tools for the RNA-seq workshop.
๐น 1. FastQC
โ Website: https://www.bioinformatics.babraham.ac.uk/projects/fastqc/
- Windows:
- Download the
Windows
ZIP file. - Unzip the folder to a location like
C:\Program Files\FastQC
. - Inside the folder, right-click on
fastqc.exe
โ Properties โ check Unblock (if present). - Add the folder to your PATH (optional but recommended):
- Search Environment Variables โ Edit environment variables โ add the FastQC folder path to the
PATH
variable.
- Search Environment Variables โ Edit environment variables โ add the FastQC folder path to the
- To test: Open
cmd
โ typefastqc --help
.
- Download the
- Mac:
- Download the
Mac
DMG or ZIP file. - Unzip or install into
/Applications/FastQC
or a folder you prefer. - To run from Terminal:
chmod +x fastqc
(inside the folder)- Run using
./fastqc
or add the folder to yourPATH
.
- To test: Open
Terminal
โ typefastqc --help
.
- Download the
๐น 2. IGV (Integrative Genomics Viewer)
โ Website: https://software.broadinstitute.org/software/igv/
- Windows / Mac:
- Download the IGV for Java 11 appropriate for your system.
- Install or unzip the package.
- Double-click the
igv.bat
(Windows) origv.sh
/igv.app
(Mac) to launch. - Make sure Java 11 or newer is installed. If not, install from Adoptium or Oracle Java.
๐น 3. RStudio
โ Website: https://posit.co/download/rstudio-desktop/
- Windows / Mac:
- Install R first:
- Download and install RStudio Desktop.
- After installation, launch RStudio and check that it connects to the R installation.
- You can also pre-install some useful packages in RStudio:
install.packages(c("tidyverse", "edgeR", "limma"))