Hi,
I have 12 RNA-Seq data sequenced at a time and another 3 data sequenced later. All of them have sex and treatment/untreatment information. I designed phenotype data as follows.
"ids","sex","treatment","seq","group"
"ind01","female","untreated","seq1","untreatedFemale"
"ind02","female","untreated","seq1","untreatedFemale"
"ind03","female","untreated","seq1","untreatedFemale"
"ind04","male","untreated","seq1","untreatedMale"
"ind05","male","untreated","seq1","untreatedMale"
"ind06","male","untreated","seq1","untreatedMale"
"ind07","female","treated","seq1","treatedFemale"
"ind08","female","treated","seq1","treatedFemale"
"ind09","female","treated","seq1","treatedFemale"
"ind10","male","treated","seq1","treatedMale"
"ind11","male","treated","seq1","treatedMale"
"ind12","male","treated","seq1","treatedMale"
"ind13","female","treated","seq2","treatedFemale"
"ind14","female","treated","seq2","treatedFemale"
"ind15","female","treated","seq2","treatedFemale"
I could see DEGs in untreated male VS treated male, untreated female VS treated female, and treated male VS treated female comparison by Wald test. For further biological implication, I would like to see genes which are specifically differentially expressed in one treated male/female group but not in the other treated sex.
I tried two full and reduced models. One is
full=~ sex + treatment + seq + group, reduced =~ sex + treatment + seq
But this was not full rank. Next, I tried
full=~ sex + treatment + seq + sex:treatment, reduced =~ sex + treatment + seq
and it could be analyzed.
My questions are:
- What is the differences between these two models?
- Is second model appropriate for my purpose?
Thank you for your kind helps!
Thank you for your valuable comments! I now understand what I want cannot be tested. So, I changed phenotype data from what I showed to
because I didn't see expression difference between untreated male and female both in clustering (PCA, Heatmap, fuzzy c-means) and two-group comparison (Wald test).
By using the revised phenotype data, I ran LRT with
full=~ seq + group, reduced =~ seq
and got some results.My another question is:
results(dds, filterFun=ihw, alpha=0.05)
which genes up/down-regulated in which comparison. Is there good way to do that?Thank you for your another helps!
The support site is more for specific questions about Bioconductor software, not for guidance on your analysis per se. You can reach out to a bioinformatician or post to another forum such as Biostars.
OK! Thanks!