Plotting Differential Induced Genes across timepoints in DESEQ2
3
1
Entering edit mode
3.0 years ago

Hello,

My project focuses on differential gene induction between two stimuli. I want to see if genes are significantly induced across my entire time course and unfortunately I have only been able to detect a small amount when I know there are more.

I want to make sure that my code is executing the task properly. stimulus.final = stimulus- c1 or c2 stimulus.timepoint = timepoint in hours(0,1,2....) Code: DESEQ object:

dds_mat_final<- DESeqDataSetFromMatrix(data_mat_raw_final_matrix,colData=ColData,design= ~ 1 + stimulus.final+ stimulus.final.complete.timepoint)

res_shrinkbl_local <-lfcShrink(res_local, coef="stimulus.final_c1_vs_c2",lfcThreshold=1)

plotMA(res_shrinkbl_local, ylim=c(-3,3), main="Significant Genes Between c1 vs c2", xlab="Mean of Normalized counts between c1 vs c2", ylab="Log2 Fold Change Difference between c1 and c2")

Does using the coefficient "stimulus.final_c2_vs_c1" compare all of the stimuli across timepoints?

Raisa

Bioconductor MA RNA-seq DESEQ2 • 1.1k views
ADD COMMENT
0
Entering edit mode

Can you show your colData to understand how the groups are set up?

ADD REPLY
0
Entering edit mode

Here is my ColData

ADD REPLY
1
Entering edit mode
3.0 years ago

I don't think you need the "1" in the design; I've never seen that in any DESeq tutorial.

What your design will do is compare the betas to the lambdas with the understanding that lots of the in-group variability is not random, but is controlled by the time point.

The other thing you can do with time points is see if there is a linear relationship, and you can use interactions to see if the linear relationship is different in the lambdas vs the betas.

ADD COMMENT
0
Entering edit mode
3.0 years ago

I have had problems with using an interaction term between stimulus and timepoint that was not able to run as well. How can I fix that? I will post the code.

ADD COMMENT
0
Entering edit mode
3.0 years ago

Is it possible that I can compare it using just the stimuli within my colData matrix?

ADD COMMENT

Login before adding your answer.

Traffic: 2412 users visited in the last hour
Help About
FAQ
Access RSS
API
Stats

Use of this site constitutes acceptance of our User Agreement and Privacy Policy.

Powered by the version 2.3.6