Skip to content

QLS-MiCM/ngsintro_summer2022

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Intro to NGS data formats and pre-processing

Requirements

We will be using the unix terminal to run our analyses. so be sure you have access to one.

  • Mac OS and any linux distribution will have a terminal already
    • Mac OS: search for terminal in your spotlight search
  • Windows users:

Note: It is required that you have some very basic knowledge on how to use the linux terminal as we will not go through basic unix commands in the workshop. Be sure you are okay with moving files, creating directories, and reading file content. For example: up until tutorial 2 from this tutorial. Here's another unix basics tutorial.

Sofware

  • Python3 is required
  • conda can be useful to install cutadapt

During the workshop we will be using some known bioinformatics software to process our dataset:

To install the software please open your terminal and copy and paste the following commands inside the text boxes.

Linux distribution and Windows with WSL

Most of the software we need is availble through the package manager.

sudo apt install fastqc
sudo apt install bowtie2
sudo apt install samtools
pip install multiqc
pip install cutadapt

Mac OS

First install Homebrew or any other package manager.

/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"

Then you can use brew to install the packages.

brew install fastqc
brew install bowtie2
brew install samtools
pip install multiqc
pip install cutadapt

Check the installation

To check that the program works, you can check if the help message gets printed:

fastqc --help
bowtie2 --help
samtools --help
multiqc --help
cutadapt --help

Some problems may arise while installing software. Be patient and read the error message, it could be due to some dependecies missing. Googling the error message is a good first attempt to solve it.

About

Intro to NGS formats and preprocessing - Summer 2022

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • HTML 100.0%