Hi everyone,
I am posting here about the normalization of allele-specific counts in RNA-seq . I have previously asked this question at another platform. And finally reached here after the suggestion. I have read this manual by Deseq2 author. This is very well written manual on how to use Deseq2 for allele-specific analysis. I have some queries on how I can better use Deseq2 for my allele-specific analysis.
What I understood that author did not use size factor for normalization rather set the size factor to unity and calculated alternate vs reference allele ratios.
If we set the size factor to unity, the counts will remain same. Then how to extract normalized count matrix?
Using alt / ref ratio we can identify differentially expressed genes in allele -specific manner between control and treated samples. In this case, how to find differential expression between the possible combinations:
control-allele1 vs control-allele2
control-allele1 vs treated-allele1
control-allele2 vs treated-allele2
treated-allele1 vs treated-allele2
In the manual resultsNames(dds) information are as follows:
[1] "Intercept" "conditiontreatedvs_control" [3] "conditioncontrol.sample2" "conditiontreated.sample2" [5] "conditioncontrol.sample3" "conditiontreated.sample3" [7] "conditioncontrol.sample4" "conditiontreated.sample4" [9] "conditioncontrol.sample5" "conditiontreated.sample5" [11] "conditioncontrol.countalt" "conditiontreated.countalt"
conditioncontrol.countalt gives the alt / ref ratio in control and conditiontreated.countalt will gives the alt vs ref ratio in treated samples. So, might be DE genes can be obtained for combinations,
conditioncontrol.countalt gives the alt / ref ratio = control-allele1 vs control-allele2
conditiontreated.countalt gives the alt / ref ratio = treated-allele1 vs treated-allele2
There is one command to call out interaction between control and treated sample:
res.diff <- results(dds, contrast=list("conditiontreated.countalt", "conditioncontrol.countalt"))
But I don't how to extract the similar results for
control-allele1 vs treated-allele1
control-allele2 vs treated-allele2
Please suggest. I would appreciate any help.
Thanks
Hi everyone,
Any suggestion would be helpful.
Thanks