You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Many of the gene-related services of cellbase return no information for certain genes for which entries actually exist in the database, most of them appearing in related queries such as transcript search, for example. The problem can be replicated using both HGNC names and Ensembl Ids.
We encountered these problem for 3406 genes in GRCh37 (which we mainly use).
For example, for RBP3, which appears in OMIM and so is important for diagnostics,
One can make several assumptions about gene/*/info and gene/search behaving inconsistently with respect to unspecified assemblies, but even so gene/RBP3/info?assembly=grch37, gene/ENSG00000107618/info?assembly=grch37, feature/gene/RBP3/info?assembly=grch38 or feature/gene/search?id=ENSG00000265203 should be returning the right results.
The text was updated successfully, but these errors were encountered:
Many of the gene-related services of cellbase return no information for certain genes for which entries actually exist in the database, most of them appearing in related queries such as transcript search, for example. The problem can be replicated using both HGNC names and Ensembl Ids.
We encountered these problem for 3406 genes in GRCh37 (which we mainly use).
For example, for RBP3, which appears in OMIM and so is important for diagnostics,
we found that cellbase gets no results:
If we specify the assembly, results are found for GRCh38:
which returns E2F1 in addition to RBP3, but nothing for GRCh37:
Using its ensembl ID does not work either:
The gene is actually in the GRCh37 database, and can be found with
http://bioinfo.hpc.cam.ac.uk/cellbase/webservices/rest/v4/hsapiens/feature/gene/search?name=RBP3&assembly=grch37
http://bioinfo.hpc.cam.ac.uk/cellbase/webservices/rest/v4/hsapiens/feature/gene/search?id=ENSG00000107618&assembly=grch37
If one search for RBP3 and does not specify the assembly,
cellbase returns only the GRCh37 result, and not the GRCh38 one. This behavior is also seem with the ensembl Ids. While, as we saw,
finds no results,
finds the GRCh37 gene, but
finds no results. Both
http://bioinfo.hpc.cam.ac.uk/cellbase/webservices/rest/v4/hsapiens/feature/gene/search?id=ENSG00000107618&assembly=grch37
http://bioinfo.hpc.cam.ac.uk/cellbase/webservices/rest/v4/hsapiens/feature/gene/search?id=ENSG00000265203&assembly=grch38
seem to work fine. So, to sum up:
One can make several assumptions about gene/*/info and gene/search behaving inconsistently with respect to unspecified assemblies, but even so gene/RBP3/info?assembly=grch37, gene/ENSG00000107618/info?assembly=grch37, feature/gene/RBP3/info?assembly=grch38 or feature/gene/search?id=ENSG00000265203 should be returning the right results.
The text was updated successfully, but these errors were encountered: