Coder Social home page Coder Social logo

050114dragon / intro-to-chipseq-flipped Goto Github PK

View Code? Open in Web Editor NEW

This project forked from hbctraining/intro-to-chipseq-flipped

0.0 0.0 0.0 87.57 MB

Home Page: https://hbctraining.github.io/Intro-to-ChIPseq-flipped/

License: Creative Commons Zero v1.0 Universal

Shell 88.20% SCSS 11.80%

intro-to-chipseq-flipped's Introduction

Introduction to ChIP-seq (2-part series)

Audience Computational Skills Prerequisites Duration
Biologists Intermediate None Shell basics and/or Introduction to R

Learning Objectives

  1. Understand the necessity for, and use of, the command line interface (bash) and HPC for analyzing high-throughput sequencing data.
  2. Understand best practices for designing a ChIP-seq experiment and analysis the resulting data.

These materials were developed for a trainer-led workshop, but are also amenable to self-guided learning.

Description

This repository has teaching materials for an Introduction to ChIP-sequencing data analysis workshop. The workshop is organized into two parts:

Part I: Raw reads to peak calls (4 sessions)

Pre-requisite: Introduction to Shell

This workshop focuses on teaching computational skills to enable the effective use of an high-performance computing environment to implement a ChIP-seq data analysis workflow. In addition to running the workflow from FASTQ files to peak calls, the workshop covers best practice guidelines for ChIP-seq experimental design and data organization/management and data visualization for quality control.

  • Introduction to ChIP-seq
  • QC using FASTQC
  • Alignment theory and considerations for ChIP-seq
  • Alignment and filtering of reads
  • Peak calling
  • Peak visualization (using deepTools)

Part II: Peak annotation and differential enrichment analysis

Pre-requisite: Introduction to R

This workshop focuses on using the R statistical programming environment to evaluate files generated from peak calling of ChIP-seq data. We describe the different file formats encountered with ChIP-seq and use various Bioconductor packages to look at concordance between replicates and annotate regions using nearest gene approaches. We demonstrate the use of DiffBind to evaluate changes in binding patterns between groups of samples, and explore genomic regions of interest as tracks in the Integrated Genome Viewer (IGV).

  • File formats for ChIP-seq
  • Peak concordance between replicates
  • ChIPQC?
  • Peak annotation and visualization
  • Differential enrichment analysis
  • Peak visualization using a genome viewer (IGV)

Lessons

Click here for links to lessons and the suggested schedule

Dataset

Installation Requirements

Download the most recent versions of R and RStudio for your laptop:

NOTE: When installing the following packages, if you are asked to select (a/s/n) or (y/n), please select “a” or "y" as applicable.

(1) Install the below packages on your laptop from CRAN. You DO NOT have to go to the CRAN webpage; you can use the following function to install them:

install.packages("BiocManager")
install.packages("tidyverse")

Note that these package names are case sensitive!

(2) Install the below packages from Bioconductor. Load BiocManager, then run BiocManager's install() function 7 times for the 7 packages:

library(BiocManager)
install("insert_first_package_name_in_quotations")
install("insert_second_package_name_in_quotations")
& so on ...

Note that these package names are case sensitive!

ChIPQC
ChIPseeker
DiffBind
clusterProfiler
AnnotationDbi
TxDb.Hsapiens.UCSC.hg19.knownGene
EnsDb.Hsapiens.v75
org.Hs.eg.db

NOTE: The library used for the annotations associated with genes (here we are using TxDb.Hsapiens.UCSC.hg19.knownGene and EnsDb.Hsapiens.v75) will change based on organism (e.g. if studying mouse, would need to install and load TxDb.Mmusculus.UCSC.mm10.knownGene). The list of different organism packages are given here.

(3) Finally, please check that all the packages were installed successfully by loading them one at a time using the library() function.

library(tidyverse)
library(ChIPQC)
library(ChIPseeker)
library(DiffBind)
library(clusterProfiler)
library(AnnotationDbi)
library(TxDb.Hsapiens.UCSC.hg19.knownGene)
library(EnsDb.Hsapiens.v75)

(4) Once all packages have been loaded, run sessionInfo().

sessionInfo()

These materials have been developed by members of the teaching team at the Harvard Chan Bioinformatics Core (HBC). These are open access materials distributed under the terms of the Creative Commons Attribution license (CC BY 4.0), which permits unrestricted use, distribution, and reproduction in any medium, provided the original author and source are credited.

intro-to-chipseq-flipped's People

Contributors

gammerdinger avatar jihe-liu avatar marypiper avatar mistrm82 avatar rkhetani avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.