TinclG / PAS_analysis

Placenta Accreta Spectrum (PAS) disorders fall within the group of Placental Implantation Abnormalities. In this project we analysed differences in gene expression in the microenvironments of PAS and normal pregnancies.
1 stars 1 forks source link

sigGenes from a cluster #22

Closed TinclG closed 2 years ago

TinclG commented 2 years ago

script 3.1_TopGO_cluster3

objects used: c2 - which are the gene names and cluster number from the cluster 4

sigGenes <- sigGenes(GOdata)

AnnoList <- lapply(tab$"GO.ID", 
                      function(x) as.character(list(genesInTerm(object = GOdata, whichGO = x))))
SigList <- lapply(AnnoList, function(x) intersect(x, sigGenes))

sigGenes doesnt return lists of genes but rather a vector of all genes Results: SigList

[[1]]
character(0)

[[2]]
character(0) ...
TinclG commented 2 years ago

Solved