DESeq2 Simple Analysis - ccsstudentmentors/tutorials GitHub Wiki

Alright, lets start with the simplest scenario -- two sample groups (a Control group and an Experimental group) where we counted reads over gene intervals using Ensembl IDs.

You can either enter the following lines into the R console directly or make an R script:

library(DESeq2)
directory = 'C:/RNASeq/ReadCounts/'
setwd(directory)

# Load data directly from HTSeq Count
sampleFiles=grep('.geneIDCounts.txt',list.files(directory),value=TRUE)
sampleNames=sub('.geneIDCounts.txt','',sampleFiles)
sampleCondition=sub('[1-3]','',sampleNames)
sampleTable=data.frame(sampleName=sampleNames, fileName=sampleFiles, condition=sampleCondition)
ddsHTSeq = DESeqDataSetFromHTSeqCount(sampleTable=sampleTable, directory=directory, design= ~ condition)

# Differential expression analysis
dds <- DESeq(ddsHTSeq)
dds$condition = relevel(dds$condition, 'Control')
res <- results(dds)

# Extract the significantly differentially expressed genes
resOrdered<- res[order(res$padj),]
resSig <- subset(resOrdered, padj<0.05)

# Convert Gene IDs to Gene Names
conversionTable=read.table('C:\RNASeq\GeneIDtoNameConversionTable.txt',sep='\t',header=FALSE,row.names=1)
colnames(conversionTable) = c('GeneName')
nameRes=merge(conversionTable,as.data.frame(res),by.x=0,by.y=0)
nameResSig=merge(conversionTable,as.data.frame(resSig),by.x=0,by.y=0)

# Print results to file
setwd('C:/RNASeq/DESeq2Output/')
write.table(nameRes, file='ExperimentalvsControl_DEResults.txt',sep='\t',quote=FALSE)
setwd('C:/RNASeq/DESeq2DEGenes/')
write.table(nameResSig, file='ExperimentalvsControl_DE_pAdj0.05.txt',sep='\t',quote=FALSE)

Line #1 loads DESeq2 into memory. After DESeq2 has been installed (which we did in the 'preparing to run DESeq2' file), we need to load it each time we start R.
Line #2 creates a variable called 'directory' that we will use several times in this script. The directory specified here should be the one that contains the readCount files.
Line #3 moves us to that directory specified in line 2.

Load data directly from HTSeq Count

Lines 6-10 load in the data from the files produced by HTSeq-count and put it into a format understandable by DESeq2.
We are 1) loading the counts for each gene for each sample into memory, 2) naming the samples, 3) dividing the samples into the appropriate groups, and 4) putting all of this info into an object made specifically for DESeq2 to work with.
For this example, I will assume that you followed my directions when running HTSeq-count and used the gene_id as the grouping identifier for exons to form genes rather than gene_name. I will also assume that you followed the naming scheme I proposed so that your files are named like this: Control1.geneIDCounts.txt, Control2.geneIDCounts.txt, Control3.geneIDCounts.txt, Experimental1.geneIDCounts.txt, Experimental2.geneIDCounts.txt, and Experimental3.geneIDCounts.txt.

Line #6 creates a list of the relevant files, based on the fact that all of the files have the phrase '.geneIDCounts.txt' in their name.
Line #7 extracts a list of the sample names from the file names. This takes advantage of the fact that if you remove the string '.geneIDCounts.txt' from the file names, you are left with sample names like 'Control1', 'Experimental1', etc.
Line #8 creates a list of the sample conditions based on the name of the sample. It basically just removes the number at the end of the sample name -- so now we have two sample groups: Control and Experimental
Line #9 rolls the lists created in Lines 6-8 into a table. The first column of the table is the list of sample names, where there is one row for each sample (six rows in the example I am using). The second column is the list of the files. The third column is the list of the sample conditions (e.g., 'Control' or 'Experimental).
After executing Line 9, you can view the table to make sure it looks right by using this command:
View(sampleTable)
Note that the 'v' in 'View' is capitalized.
Line #10 does all of the heavy lifting of actually reading the data from these six files into memory and constructing the data object that we will be working with from here on out.

Differential expression analysis

Lines 13-15 perform the differential expression testing
Line #13 takes the 'ddsHTSeq' object created in line 10 and performs the actual differential expression testing on its data. It returns the object 'dds'
Line #14 ensures that the results of the differential expression testing will be reported with the 'control' condition being treated as the control group.

An example seems like it would be helpful here. Imagine that you have a gene whose expression is twice as high in the experimental condition than in the control condition. We would want the result of the comparison of this expression to be a Log2(Fold Change) of 1, not -1. By asserting here in Line 14 that the condition called 'Control' is the control group, we ensure that our data comes out in this way which makes intuitive sense when we interpret our results later.

Line #15 just pulls the results from the differential testing into a table of results (specifically, R calls this kind of table a data frame).

This results table now tells us the log fold change and false discovery rate adjusted p-value (among other, less important things) of this Experimental vs Control comparison for each gene.
But, we are lazy and don't want to look at all of these genes all the time. Often, we just want to see the ones that are 'significant' in their differential expression. Lines 18 and 19 allow us to decide on our threshold for significance in our differential expression testing and then pull out only the genes that pass that filter.

Extract the significantly differentially expressed genes

Line #18 simply sorts the whole list of genes by the value of their false discovery rate adjusted p-value (lowest values first) -- this isn't necessary and can be omitted if you don't want your results ordered this way.
Line #19 filters the results down to only those that have a FDR-adjusted p-value of less than 0.05 (which is what I chose as the threshold for significance for this dataset). You can choose whatever value you want here -- you will just have to justify it one day when you present your results or publish them! The most common values here are 0.05 and 0.1. People typically don't use really stringent p-values to shrink their lists of differentially expressed genes beyond this point. Instead, they apply additional filters on the log fold change. But I digress...

Now that you have the subset of your data that have FDR-adjusted p-values of less than 0.05, we can go ahead and print them to a file. But wait! We are using uselessly enigmatic Ensembl Gene IDs! So, before we print this data out, lets add in the gene name data for each of the Gene IDs. Lines 22-25 perform the name conversion and add in that information.

Convert Gene IDs to Gene Names

Line #22 loads the conversion table file we made earlier into memory. This file has two columns -- the first is the Gene ID, the second is the corresponding gene name (the official gene symbol).
Line #23 renames the column of data related to the gene names (so that it will be labeled as gene names when it is eventually printed out to file).
Line #24 merges this conversion table with our results table using the gene IDs as the matching key. Because of the order in which we entered these two tables to the 'merge' command, we will get the Gene IDs put as the second column of the now eight column results files.
Line #25 does the same thing as line 24 but only for the significantly differentially expressed genes.

Print results to file

Line #28 moves us to the directory called 'DESeq2Output'.
Line #29 prints a tab separated text file in that directory containing the information produced by DESeq2 about this comparison for every gene.
Line #30 moves us to the directory called 'DESeq2DEGenes'.
Line #31 prints a text file similar to the one made in line 23, except that it is filtered to only include the genes that passed our p-value cutoff that we applied in Line 19.

Congratulations! These files are now your RNA-Seq results and you may use them to see how well your RNA-Seq experiment results matched your hypothesis!

⚠️ **GitHub.com Fallback** ⚠️