I have several lists of DE genes, some of them from microarray and others from RNAseq.
I have tried to use the GeneOverlap
library in R
to perform and test the overlapping between two or more gene lists, but I do not know how to define a full list of genes to use as my gene background
.
Could I use all genes in the genome or get a common list from all datasets, by filtering the same gene features and selecting features that only exist in both RNA-seq and microarray?
Hello there. Sorry, I am a little confused, what exactly are you trying to determine by using
GeneOverlap
in this way?Hi Thomas, I am looking for common DE genes that are shared between two experiments, so the GeneOverlap compare two gene lists and then uses Fisher's exact test to find the statistical significance. Considering the contigency table 2x2, I have the number of differentially expressed genes to each list but I need to chose the gene universe (DE + Not DE). Since I wish to compare microarray x RNAseq studies, I have two options in this case: 1- Universe is all genes in the genome 2- Universe is only the expressed genes What is the best option in this case?