You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Installation Guide for Practical Couse of SOSE 2021 (Part 1)
## Environment: Linux 64 bits
## The tools are tested on Linux Mint 20.1 - Ulyssa, 64bit. and Ubuntu 20.04
0. Install JAVA if you don't have it
sudo apt install default-jre
1. Download fastqc
mkdir -p ~/Downloads/bin
cd ~/Downloads/bin
wget https://www.bioinformatics.babraham.ac.uk/projects/fastqc/fastqc_v0.11.9.zip
unzip fastqc_v0.11.9.zip
rm fastqc_v0.11.9.zip
# make sure that fastqc is executable
sudo chmod 770 FastQC/fastqc
2. Download trim galore
cd ~/Downloads/bin
wget https://github.com/FelixKrueger/TrimGalore/archive/0.6.5.zip
unzip 0.6.5.zip
rm 0.6.5.zip
3. Install samtools
sudo apt install samtools # For Ubuntu-based distributions
4. Install python3.9 and pip
# check if you already have it installed with
python3 --version
# if not run
# sudo apt install python3.9
sudo apt install python3-pip
pip3 install --user --upgrade cutadapt
# Also set ~/.local/bin to be part of your PATH in the .bashrc file.
# Add: export PATH=/home/$USER/.local/bin:$PATH to ~/.bashrc file
#
5. Install STAR aligner
cd ~/Downloads/bin
wget https://github.com/alexdobin/STAR/archive/master.zip
unzip master.zip
# you will also need some dependencies
sudo apt install zlib1g-dev
cd STAR-master/source
make STAR
# install missing dependencies if any discovered during installation
6. Install IGV (2.4.9)
cd ~/Downloads/bin
wget https://data.broadinstitute.org/igv/projects/downloads/2.9/IGV_Linux_2.9.4_WithJava.zip
unzip IGV_Linux_2.9.4_WithJava.zip
rm IGV_Linux_2.9.4_WithJava.zip