# Create a tibble of results
<- res_tableKD %>%
res_tableKD_tb data.frame() %>%
rownames_to_column(var="gene") %>%
as_tibble()
Summarizing results from the Wald test - Answer key
Exercise 1
MOV10 Differential Expression Analysis: Control versus Knockdown
Using the same p-adjusted threshold as above (padj.cutoff < 0.05
), subset res_tableKD
to report the number of genes that are up- and down-regulated in Mov10_knockdown compared to control.
How many genes are differentially expressed in the Knockdown compared to Control? How does this compare to the overexpression significant gene list (in terms of numbers)?
# Subset the tibble to keep only significant genes
<- res_tableKD_tb %>%
sigKD ::filter(padj < padj.cutoff) dplyr
There are rnrow(sigKD)
genes differentially expressed in the Knockdown compared to Control, and 4774 genes differentially expressed in the Overexpression compared to Control. Therefore, fewer genes are present in the Knockdown significant gene list.