Low expressed genes
1
0
Entering edit mode
3.5 years ago

from one review I found this statement: removing features whose counts are consistently low (for example, removing all features that have a count of less than say 10 in more than 90% of the samples)

Can you explain how to remove less count genes in 90% samples in excel???

Anyone please guide me

RNA-Seq • 748 views
ADD COMMENT
2
Entering edit mode

No, since one should not even consider Excel for NGS datasets. Is R an option?

ADD REPLY
0
Entering edit mode

ohk then how to remove low count genes in 90% of samples?

ADD REPLY
3
Entering edit mode
3.5 years ago
ATpoint 81k

Say your matrix is called cts:

keep <- rowSums(cts > 10) > (ncol(cts) * 0.9)
cts[keep,]
ADD COMMENT

Login before adding your answer.

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