All Projects → hbctraining → Intro To Chipseq

hbctraining / Intro To Chipseq

Intro to ChIPseq using HPC

Labels

Projects that are alternatives of or similar to Intro To Chipseq

Maz Ui
Stand-alone components library to build your interfaces with Vue.JS & Nuxt.JS
Stars: ✭ 109 (-5.22%)
Mutual labels:  scss
Lemonj
一个面向 CSS/LESS/SCSS 的分析、坏味道检查和自动化重构工具。
Stars: ✭ 112 (-2.61%)
Mutual labels:  scss
Time
time是一个for typecho相册模板
Stars: ✭ 112 (-2.61%)
Mutual labels:  scss
Light Blue Dashboard
🔥 Free and open-source admin dashboard template built with Bootstrap
Stars: ✭ 110 (-4.35%)
Mutual labels:  scss
Responsive Sidebar Navigation
An easy-to-integrate side, vertical navigation, ideal for dashboards and admin areas.
Stars: ✭ 111 (-3.48%)
Mutual labels:  scss
Don Blog Backmanage
Don's blog的后台管理系统,基于Vue.js + Node.js + Koa.js + MySQL + Redis + WebSocket。
Stars: ✭ 112 (-2.61%)
Mutual labels:  scss
React Starter
A basic template that consists of the essential elements that are required to start building a React (v16.3) application using Webpack (v4)
Stars: ✭ 108 (-6.09%)
Mutual labels:  scss
Fictoan
Mockups with markup — https://sujan-s.github.io/fictoan/
Stars: ✭ 114 (-0.87%)
Mutual labels:  scss
Openrefine.github.com
Github pages repository for OpenRefine account
Stars: ✭ 111 (-3.48%)
Mutual labels:  scss
Ufo Spec
The official Unified Font Object specification source files.
Stars: ✭ 111 (-3.48%)
Mutual labels:  scss
Plate
Plate: a super stripped-down WordPress starter theme for developers.
Stars: ✭ 110 (-4.35%)
Mutual labels:  scss
Peridot
A fast and powerful Vue.js PWA boilerplate
Stars: ✭ 111 (-3.48%)
Mutual labels:  scss
Sass Vars Loader
Use Sass variables defined in Webpack config or in external Javascript or JSON files
Stars: ✭ 112 (-2.61%)
Mutual labels:  scss
Lightning Admin Angular
A mobile first design of a responsive admin template built with angular and bootstrap
Stars: ✭ 107 (-6.96%)
Mutual labels:  scss
Cs228 Notes
Course notes for CS228: Probabilistic Graphical Models.
Stars: ✭ 1,559 (+1255.65%)
Mutual labels:  scss
Griddd
A dead simple, customisable, flexbox-based griddd
Stars: ✭ 108 (-6.09%)
Mutual labels:  scss
React Flow Editor
React component which enables creating flow editors with ease
Stars: ✭ 110 (-4.35%)
Mutual labels:  scss
Styled Jsx Plugin Sass
Plugin to add Sass support to styled-jsx. Warning this is a Proof Of Concept plugin.
Stars: ✭ 115 (+0%)
Mutual labels:  scss
Phpversions.info
Which hosts support which PHP versions, and which is default
Stars: ✭ 113 (-1.74%)
Mutual labels:  scss
Lisplang.github.io
Common Lisp homepage
Stars: ✭ 112 (-2.61%)
Mutual labels:  scss

Introduction to ChIP-seq using high performance computing

Audience Computational Skills Prerequisites Duration
Biologists Beginner/Intermediate None 3-day workshop (~19.5 hours of trainer-led time)

Description

This repository has teaching materials for a 3-day Introduction to ChIP-sequencing data analysis workshop. This workshop focuses on teaching basic computational skills to enable the effective use of an high-performance computing environment to implement a ChIP-seq data analysis workflow. It includes an introduction to shell (bash) and shell scripting. In addition to running the ChIP-seq workflow from FASTQ files to peak calls and nearest gene annotations, the workshop covers best practice guidlelines for ChIP-seq experimental design and data organization/management and quality control.

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

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.

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.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].