DESeq2 question: how to identify genes expressed only in one condition
1
2
Entering edit mode
5.7 years ago
EVWS ▴ 30

Hi DESeq2 users (and edgeR users):

I've completed the DESeq2 pipeline and have identified differentially expressed genes, but I still want to know what genes are expressed ONLY in one condition (i.e. what genes are uniquely/only expressed in my negative control libraries and what genes are uniquely/only expressed in my experiment libraries). Is there a way to do this in DESeq2 or do I need to use edgeR? Regardless of which program I need to use, could someone kindly provide an example script? Thanks!

RNA-Seq DESeq2 R edgeR • 1.9k views
ADD COMMENT
3
Entering edit mode
5.7 years ago

Your best option is to normalise your data, transform to logged counts (e.g. regularised log), and then derive Z scores from these. You can then pick a threshold / cut-off for expression / no expression. For example, if you converted your data to Z-scores, you could then check the expression of genes in your condition of interest by setting Z-score cut-offs of:

  • >3 'uniquely' expressed
  • <-3 'not' expressed

You will find it difficult from RNA-seq data to find genes that are absolutely not expressed (based on how the data is normalised), unless you literally look at those with 0 counts; although, these may have 0 counts for other reasons. If you want to go by this method, then just look at the normalised counts and order them from high-to-low in your condition of interest.

Transcription is a pervasive process and the majority of the transcriptome is transcribed at a low level in most tissues in the body. It's the transcripts that are highly expressed in a particular tissue that can give it its' 'character', though, like MS4A1 (encodes CD20), CD79A, CD79B and B-cells.

Kevin

ADD COMMENT
1
Entering edit mode

Thanks Kevin. I was planning on taking an approach like this if there was no feature in the program to do so.

E

ADD REPLY

Login before adding your answer.

Traffic: 2705 users visited in the last hour
Help About
FAQ
Access RSS
API
Stats

Use of this site constitutes acceptance of our User Agreement and Privacy Policy.

Powered by the version 2.3.6