Dear All,
I have two populations (L and S) and two treatments (C and S). I would like to compare gene expression for each treatment in each population.
The SampleTable is as follows:
sample_name file_name population treatment poptreat
L1 L1.count L C L_C
L2 L2.count L C L_C
L3 L3.count L C L_C
L4 L4.count L S L_S
L5 L5.count L S L_S
S1 S1.count S C S_C
S2 S2.count S C S_C
S3 S3.count S C S_C
S4 S4.count S S S_S
S5 S5.count S S S_S
My design is “design= ~ population+treatment+population:treatment”
I think there should have four levels of the interaction, but there is only one.
Atl_IC_IT <- DESeq(Atl_IC_IT)
resultsNames(Atl_IC_IT)
"Intercept" "population_S_vs_L" "treatment_S vs_C" "populationS.treatmentS"
Can I get the other three levels of the other three levels of interaction?
I also tried to combine the population and treatment as suggested in other posts, but encountered the following problem:
> Atl_IC3 <- DESeqDataSetFromHTSeqCount(sampleTable = sampleinfoT,directory = directory1,design= ~ population+treatment+poptreat)
error DESeqDataSet(se, design = design, ignoreRank) :
the model matrix is not full rank, i.e. one or more variables in the design formula are linear combinations of the others
Can I get comparisons among populationL.treatmentC, populationL.treatmentS, populationS.treatmentC, populationS.treatmentS?
Thank you in advance.
Xiaoping
I have two populations (L and S) and two treatments (C and S). I would like to compare gene expression for each treatment in each population.
The SampleTable is as follows:
sample_name file_name population treatment poptreat
L1 L1.count L C L_C
L2 L2.count L C L_C
L3 L3.count L C L_C
L4 L4.count L S L_S
L5 L5.count L S L_S
S1 S1.count S C S_C
S2 S2.count S C S_C
S3 S3.count S C S_C
S4 S4.count S S S_S
S5 S5.count S S S_S
My design is “design= ~ population+treatment+population:treatment”
I think there should have four levels of the interaction, but there is only one.
Atl_IC_IT <- DESeq(Atl_IC_IT)
resultsNames(Atl_IC_IT)
"Intercept" "population_S_vs_L" "treatment_S vs_C" "populationS.treatmentS"
Can I get the other three levels of the other three levels of interaction?
I also tried to combine the population and treatment as suggested in other posts, but encountered the following problem:
> Atl_IC3 <- DESeqDataSetFromHTSeqCount(sampleTable = sampleinfoT,directory = directory1,design= ~ population+treatment+poptreat)
error DESeqDataSet(se, design = design, ignoreRank) :
the model matrix is not full rank, i.e. one or more variables in the design formula are linear combinations of the others
Can I get comparisons among populationL.treatmentC, populationL.treatmentS, populationS.treatmentC, populationS.treatmentS?
Thank you in advance.
Xiaoping
Comment