Hello all,
Using time series (two condition with 4 time point) data in DESeq2, I got warning while fitting by GLM ??
bckCDS <- DESeqDataSetFromMatrix(countData = x, colData=ExpDesign, design= ~condition.label + condition.Time + condition.label:condition.Time)
ddsLRT= DESeq (bckCDS, test =LRT, reduced = ~condition.label + condition.Time)
estimating size factors
estimating dispersions
gene-wise dispersion estimates
mean-dispersion relationship
NOTE: fitType=parametric, but the dispersion trend was not well captured by the
function: y = a/x + b, and a local regression fit was automatically substituted.
specify fitType=local or mean to avoid this message next time.
final dispersion estimates
fitting model and testing
May I have fit it by "local", indeed its work by this however, my question is why its not working by fitType='parametric'
. What is advantage and disadvantage of it?
Thanks
Dear sir,
Thanks for your kind answer. Its done. But now I am trying to use Time series analysis for one condition (one condition with 4 time points).... Indeed I tried and got error.
Now I tried
and it seem its work, is it ok what I am doing?
Yes, that's likely what you want. What you're asking there is, "Which model fits a gene's expression better, one where expression can change with each timepoint (
~condition.Time
), or one where expression is constant or at least doesn't vary at the timepoints we looked at (~1
)."If you know someone locally who's taken more statistics (or even just linear algebra...so any physicicist, computational biologist, engineer, etc.), you might ask him/her to draw out what
~condition.Time
and~1
are doing. I know that these things largely look meaningless, but they're probably pretty easy to understand if someone just goes through a simple example on a white board.You used the same model for the full and reduced fitting...that won't work very well. I'm assuming with the LRT you're trying to ask the question, "Is there an effect of time?" In that case, the reduced design should be
~1
.Thanks Devon for your kind reply,
that mean i should not use full = ~condition, right ?
now i end up with..
bckCDS <- DESeqDataSetFromMatrix(countData = wt, colData=ExpDesign, design= ~condition.Time)
ddsLRT= DESeq(bckCDS, test ="LRT", fitType='local', reduced=~1)
resLRT=results(ddsLRT)
You didn't define a
condition
column inExpDesign
, so using~condition
would just lead to an error message.I didn't get any error bcz I have condition as name
condition.label
in ExpDesign and its only one condition, therefore I can't use contrast model, however I used only condition.Time in my model matrix.If
condition.label
is only ever WT then there's no point in including it. It can't change anything.Thanks Dev,
I got my results, just last answer I would like to have from your side. I got comparison between T1 vs T2, T1 vs T3 and T1 vs T4. However, is there way to compare all 6 combinations like T1 vs T2, T1 vs T3, T1 vs T4, T2 vs T3, T2 vs T4 and T3 vs T4? I guess, I have to use
nbinomLRT()
?Thanks, I got it.
See
help(results)
and note thecontrast
parameter. Also, you can just use a Wald test, which is the default.