@Qroid more specifically I want to check for depletion.
Opposite of enrichment analysis
So, we do enrichment analysis in order to see if something that we found is more than expected. But, how can we check for the opposite?
Something that we found is less than expected.
• 2,920 views
•
link
1 answer
If you want to specifically check for under-enrichment, you can run a left-tailed one-sided Fisher's exact test. Here you're checking if the observed frequency is significantly smaller than the background frequency, i.e. you have less hits than you'd expect from random chance.
In R, you'd run fisher.test() with the parameter alternative="less" to specify the left tail.
• 0 views
•
link
• 0 views
•
link
@Qroid I understand what one-sided Fisher's is, but can you explain the concept of left-tailed?
• 0 views
•
link
Log in to answer this question.