Gene IDs conversion between Ensembl and NCBI nomenclature for non-model species
1
0
Entering edit mode
andremicc • 0
@2588a75e
Last seen 1 day ago
Italy

Is there a way to convert Ensembl gene IDs to corresponding NCBI gene IDs for non-model species? I'm working on the flathead mullet Mugil cephalus, for which a reference genome exists on both NCBI and Ensembl-rapid (gtf/gff3 available on both), but no org.db annotation package or biomaRt is available.

Is there a way to programmatically exploit the gff resource?

Thanks

annotation geneIDs flatheadmullet • 346 views
ADD COMMENT
0
Entering edit mode
@james-w-macdonald-5106
Last seen 12 hours ago
United States

You can use the AnnotationHub

> library(AnnotationHub)

> hub <- AnnotationHub()

  |===========================| 100%

snapshotDate(): 2024-10-28

## query
>  query(hub, c("mugil","orgdb"))
> AnnotationHub with 5 records
# snapshotDate(): 2024-10-28
# $dataprovider: ftp://ftp.ncbi.n...
# $species: Mugil japonicus, Mugi...
# $rdataclass: OrgDb
# additional mcols():
#   taxonomyid, genome,
#   description,
#   coordinate_1_based,
#   maintainer, rdatadateadded,
#   preparerclass, tags,
#   rdatapath, sourceurl,
#   sourcetype 
# retrieve records with, e.g.,
#   'object[["AH118154"]]' 


  AH118154 |
  AH118155 |
  AH118156 |
  AH118157 |
  AH118418 |
           title                   
  AH118154 org.Mugil_cephalotus....
  AH118155 org.Mugil_cephalus.eg...
  AH118156 org.Mugil_galapagensi...
  AH118157 org.Mugil_japonicus.e...
  AH118418 org.Mugil_chanos.eg.s...

## get the right species
> orgdb <- hub[["AH118155"]]
downloading 1 resources
retrieving 1 resource
  |===========================| 100%

loading from cache

> orgdb
OrgDb object:
| DBSCHEMAVERSION: 2.1
| DBSCHEMA: NOSCHEMA_DB
| ORGANISM: Mugil cephalus
| SPECIES: Mugil cephalus
| CENTRALID: GID
| Taxonomy ID: 48193
| Db type: OrgDb
| Supporting package: AnnotationDbi

Please see: help('select') for usage information
>
1
Entering edit mode

Oh wait. You want to map from Ensembl to NCBI? That's hard to do with model organisms, let alone non-model. This OrgDb doesn't have Ensembl mappings. If possible, you should just try to stay within one or the other annotation service rather than mapping between.

Login before adding your answer.

Traffic: 857 users visited in the last hour
Help About
FAQ
Access RSS
API
Stats

Use of this site constitutes acceptance of our User Agreement and Privacy Policy.

Powered by the version 2.3.6