All Projects → hbctraining → Dge_workshop

hbctraining / Dge_workshop

Projects that are alternatives of or similar to Dge workshop

Dl Keras Tf
rstudio::conf(2020) deep learning workshop
Stars: ✭ 137 (-32.51%)
Mutual labels:  workshop
Docker Workshop
Docker workshop
Stars: ✭ 174 (-14.29%)
Mutual labels:  workshop
React Workshop
The course material for our React Hooks workshop
Stars: ✭ 184 (-9.36%)
Mutual labels:  workshop
Securekubernetes
Attacking and Defending Kubernetes Clusters: A Guided Tour
Stars: ✭ 146 (-28.08%)
Mutual labels:  workshop
Workshop
Docker, Kubernetes and Gravity Trainings by Gravitational
Stars: ✭ 1,963 (+867%)
Mutual labels:  workshop
App Innovation Workshop
Hands-on workshop designed to help you learn Azure, Mobile & AI
Stars: ✭ 177 (-12.81%)
Mutual labels:  workshop
Face Tracking P5js
Using facetracking with p5js to create playful or critical web applications
Stars: ✭ 118 (-41.87%)
Mutual labels:  workshop
Relay Workshop
Material for my Relay Workshop
Stars: ✭ 197 (-2.96%)
Mutual labels:  workshop
React Workshop
A step-by-step workshop for learning React fundamentals while building an app
Stars: ✭ 171 (-15.76%)
Mutual labels:  workshop
Build Your Own Shell
Guidance for mollusks (WIP)
Stars: ✭ 181 (-10.84%)
Mutual labels:  workshop
Sg Aks Workshop
Security + Governance Workshop
Stars: ✭ 153 (-24.63%)
Mutual labels:  workshop
Programming With Data
🐍 Learn Python and Pandas from the ground up
Stars: ✭ 156 (-23.15%)
Mutual labels:  workshop
Frida Boot
Frida Boot 👢- A binary instrumentation workshop, with Frida, for beginners!
Stars: ✭ 179 (-11.82%)
Mutual labels:  workshop
Org Mode Workshop
Workshop for Org-mode with focus on todo-, project- and workflow-management
Stars: ✭ 141 (-30.54%)
Mutual labels:  workshop
Microsoft Student Partner Workshop Learning Materials Ai Nlp
This repository contains all codes and materials of the current session. It contains the required code on Natural Language Processing, Artificial intelligence.
Stars: ✭ 187 (-7.88%)
Mutual labels:  workshop
Bcs workshop apr 20
Workshop on basic machine learning, computational modeling, psychophysics, basic data analysis and experiment design
Stars: ✭ 134 (-33.99%)
Mutual labels:  workshop
Recommendation
Recommendation System using ML and DL
Stars: ✭ 174 (-14.29%)
Mutual labels:  workshop
Netlify Functions Workshop
Netlify Serverless Functions Workshop
Stars: ✭ 203 (+0%)
Mutual labels:  workshop
Container.training
Slides and code samples for training, tutorials, and workshops about Docker, containers, and Kubernetes.
Stars: ✭ 2,377 (+1070.94%)
Mutual labels:  workshop
Openshiftv3 Workshop
OpenShift v3 Workshops by the OpenShift Tiger Team
Stars: ✭ 179 (-11.82%)
Mutual labels:  workshop

Differential gene expression workshop

Audience Computational skills required Duration
Biologists Introduction to R 1.5-day workshop (~10 hours of trainer-led time)

Description

This repository has teaching materials for a 1.5-day, hands-on Introduction to differential gene expression (DGE) analysis workshop. The workshop will lead participants through performing a differential gene expression analysis workflow on RNA-seq count data using R/RStudio. Working knowledge of R is required or completion of the Introduction to R workshop.

Learning Objectives

  • QC on count data using Principal Component Analysis (PCA) and hierarchical clustering
  • Using DESeq2 to obtain a list of significantly different genes
  • Visualizing expression patterns of differentially expressed genes
  • Performing functional analysis on gene lists with R-based tools

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

Lessons

Below are links to the lessons and suggested schedules:

Installation Requirements

  1. Download the most recent versions of R and RStudio for your laptop:
  1. Install the following packages using the instructions provided below.

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 but know that it can take awhile.

(a) 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 one by one:

install.packages("insert_first_package_name_in_quotations")
install.packages("insert__second_package_name_in_quotations")
& so on ...

Packages to install from CRAN (note that these package names are case sensitive!):

  • BiocManager
  • RColorBrewer
  • pheatmap
  • ggrepel
  • devtools
  • tidyverse

(b) Install the below packages from Bioconductor, using BiocManager::install() function 7 times for the 7 packages:

BiocManager::install("insert_first_package_name_in_quotations")
BiocManager::install("insert_second_package_name_in_quotations") 

Packages to install from Bioconductor (note that these package names are case sensitive!):

  • DESeq2
  • clusterProfiler
  • DOSE
  • org.Hs.eg.db
  • pathview
  • DEGreport
  • EnsDb.Hsapiens.v86
  • AnnotationHub
  • ensembldb
  1. Finally, please check that all the packages were installed successfully by loading them one at a time using the library() function.
library(DESeq2)
library(ggplot2)
library(RColorBrewer)
library(pheatmap)
library(ggrepel)
library(clusterProfiler)
library(DEGreport)
library(org.Hs.eg.db)
library(DOSE)
library(pathview)
library(tidyverse)
library(EnsDb.Hsapiens.v86)
library(AnnotationHub)
library(ensembldb)
  1. 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].