I am getting the chromosome location of a human gene list using getbm. However, getbm can not return some genes' locations, such as "LILRA3".
getBM(attributes=c("chromosome_name",'hgnc_symbol',"start_position","end_position"), filters ="hgnc_symbol", values = "LILRA3", mart = ensembl)
chromosome_name hgnc_symbol start_position end_position
1 CHR_HSCHR19LRC_COX2_CTG3_1 LILRA3 54294043 54306352
2 CHR_HSCHR19LRC_COX1_CTG3_1 LILRA3 54294163 54306461
3 CHR_HSCHR19LRC_PGF2_CTG3_1 LILRA3 54294418 54306726
4 CHR_HSCHR19_4_CTG3_1 LILRA3 54294391 54301485
But searching the gene manually on NCBI, you know LILRA3 is on chromosome 19.
Is this because the ensemble data is not updated or some other reason? how to solve this?
Thanks!
---------------update-----------------------
I think I have an answer. The gene list I got may come from an early version of human genome annotation, and some gene symbol is not in the current version. So I can not find them using biomart or in the current version gff3 annotation file.
However, I still don`t know what was changed among different version of human genome annotation, and why some gene symbol is no longer mapped to chromosome.
What's your ensembl?
ensembl <- useMart("ensembl", dataset="hsapiens_gene_ensembl")
?yes and I have an answer to update