differential gene expression analysis
1
0
Entering edit mode
3.8 years ago

if i have a 183 columns representing 183 patients, genes are represented in rows. how to remove genes that have zero reads in 25% of the patients.

RNA-Seq • 566 views
ADD COMMENT
1
Entering edit mode
3.8 years ago

I'm assuming you are doing this in R because of the popularity of DESeq2 and edgeR.

patient_data <- patient_data[rowSums(patient_data == 0) < (ncol(patient_data) * 0.25), ]
ADD COMMENT

Login before adding your answer.

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