Hey,
I am interested in a set of GO-terms found on Quick-GO. While I found many others, GO:1904936 interneuron migration
returns 0 genes. It has many genes in human.
library(biomaRt)
ensembl = useMart("ensembl", dataset="hsapiens_gene_ensembl") #uses human ensembl annotations
GO="GO:1904936"
(genes <- getBM(attributes=c('hgnc_symbol'), # 'ensembl_transcript_id', 'go_id'
filters = "go", uniqueRows = TRUE,
values = GO, mart = ensembl)[,1])
I am a bit clueless here – I guess ensembl does not have all GO-terms that exist on Quick-GO?
Is there any other mart, or mart setting?
I appreciate your input, Thanks, Abel