DESeq2
1
0
Entering edit mode
amoaristotle ▴ 10
@user-24704
Last seen 3.2 years ago

please how can i filter my DEGs using | log2 fold change | >1.

Thanks

DESeq2 • 429 views
ADD COMMENT
0
Entering edit mode
Kevin Blighe ★ 3.9k
@kevin
Last seen 11 days ago
Republic of Ireland

Hello,

This is a generic question about R coding and not related to DESeq2. Nevertheless, please try something like:

subset(results, abs(log2fc) > 1)

...or:

results[which(abs(results$log2fc) > 1),]

Kevin

ADD COMMENT
1
Entering edit mode

thanks

ADD REPLY

Login before adding your answer.

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