Hello, I would like to know if with the RNA seq you can compare the expression of different genes in the same sample. For example:
SampleA
GeneA 10 GeneB 5
Can I say the GeneA is expressed two times more than GeneB with a good confidence? Or is there some bias when you do this kind of comparisons? Thank you.
Hi WouterDeCoster,
I hope it is ok that I build onto your answer here, as I am also interested in comparing gene vs. gene in individual samples, not sample vs sample. I have 1 control sample (non-stressed) and 4 individual samples (stressed) and I want to compare gene A vs gene B in each of my individual samples. So I normalized my read counts with TMM while also supplying gene lengths to normalize to in NOISeq. For TMM I used my control as the reference
myTMM_lengths <- tmm(assayData(myData)$exprs, long=(mylengths), lc=1, k=0, refColumn=1)
.Then I just ended up plotting the normalized counts like this to visualize gene count differences.
My question is then since my data is normalized, can I say in sample 1 that gene A is 2x greater than gene B? Would a z-test be more meaningful? Is this analysis similar to what is done for sc-RNAseq?
Apologies if my question is elementary. I think I am confused because I am not wanting to do sample vs sample as most DE programs are set up to do as I do not have 2 or more "factors" to compare and I am trying to learn what meaningful analysis I can do with these normalized read counts.
Thanks in advance! Morgan