federicomarini / ideal

Interactive Differential Expression AnaLysis - DE made accessible and reproducible
https://federicomarini.github.io/ideal/
Other
29 stars 7 forks source link

Intersection between Up and down regulated genes #6

Open clbenoit opened 3 years ago

clbenoit commented 3 years ago

I find an intersection between the up and down regulated genes with Ideal. ("Intersection of gene sets" figure in the "Functional analysis" outlet). That is strange. Please find the figure in PJ plot_vennlists.pdf

Best wishes, Cala3len

federicomarini commented 3 years ago

Indeed weird. Got a MRE I can work on?

clbenoit commented 3 years ago

Hello Frederico, Please find here both sampleplan and count matrix I have used : IdealData.zip (Filter 2 on the rowsums then group_1 vs group2 DE with default parameters).

federicomarini commented 3 years ago

Hi @Cala3len, I might need a more detailed description to fully reproduce this one. What should I specify in the other steps for the setup part? Or can you provide the exact code that underlies your sentences?

federicomarini commented 3 years ago

Although, from a first look at it, I have some first bets

Probably should be addressed by an extra na.omit ahead of the call.

Could you confirm that if you save the state of the reactives (upper right corner)? Or as well, if you are confident with the editor: try adding such a chunk while the app is live

values$genelistUP()
values$genelistDOWN()
intersect(values$genelistUP(),values$genelistDOWN())

sum(is.na(values$genelistUP()))
sum(is.na(values$genelistDOWN()))

vl <- gplots::venn(
  list(
    values$genelistUP(),
    values$genelistDOWN()
  )
)

vl