how to find expressed genes in RNAseq
1
0
Entering edit mode
melkile26 • 0
@melkile26-16646
Last seen 5.1 years ago

Hello all,


I am a newbie to RNAseq analysis. I am comparing (treatment vs control). Briefly, I mapped the RNA-seq reads to the reference genome using STAR and I used featureCounts to quantify the reads mapped to the reference genes and found the gene counts. Before I start the deferentially expression analysis, I would like to find the expressed genes. I use the command below and found 15463 genes, is it right to say, out of 24321 genes 15463 genes are expressed.

dds<-dds[rowSums(counts(dds)) > 0,]

dds<-dds[rowSums(counts(dds)) > 5]

deseq2 rnaseq differential gene expression featurecounts rnaseqGene • 1.2k views
ADD COMMENT
1
Entering edit mode
@mikelove
Last seen 3 minutes ago
United States

We don’t have anything in DESeq2 to define what is expressed. Sometime people would use a TPM cutoff I suppose. If you have imported with tximport then the TPM matrix will be available.

ADD COMMENT
0
Entering edit mode

Hi Michael,

Thanks for your reply, I just learned, even in using the command below doesn't related to in filtering the expressed genes,

dds<-dds[rowSums(counts(dds)) > 5,]


According to DESeq2 vignette, "removing rows in which there are no reads or nearly no reads, we reduce the memory size of the dds data object and we increase the speed of the transformation and testing functions within DESeq2".

I have been using 'dds<-dds[rowSums(counts(dds)) > 5,]' command to find the expressed genes from raw counts.

 


 

ADD REPLY
0
Entering edit mode

Dear Michale,

As I mentioned, I found the gene level counts using featureCounts, can I use tximport to import the gene level count matrix which I found using featurCounts. After importing, I am thinking to use TPM to find the expressed genes.

 

ADD REPLY

Login before adding your answer.

Traffic: 930 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