Hello everybody
I installed locally the homo_sapiens_*_106_37 databases.
Hoping I have a little understanding about the table structure and relations in homo_sapiens_core I have run the simple sql:
SELECT
transcript.stable_id AS transcript_stable_id,
transcript_display.display_label AS transcript_display_label,
CASE WHEN gene.canonical_transcript_id = transcript.transcript_id THEN 'YES' ELSE '' END AS canonical
FROM
gene
INNER JOIN transcript USING (gene_id)
INNER JOIN xref AS transcript_display ON transcript_display.xref_id=transcript.display_xref_id
WHERE
gene.stable_id = 'ENSG00000066468'
ORDER BY
transcript_display.display_label;
What I get is:
transcript_stable_id transcript_display_label canonical
ENST00000358487 FGFR2-001
ENST00000336553 FGFR2-003
ENST00000360144 FGFR2-004
ENST00000369060 FGFR2-005
ENST00000369056 FGFR2-006
ENST00000369059 FGFR2-007
ENST00000478859 FGFR2-008
ENST00000346997 FGFR2-009
ENST00000457416 FGFR2-010 YES
ENST00000369058 FGFR2-011
ENST00000356226 FGFR2-012
ENST00000491111 FGFR2-013
ENST00000490349 FGFR2-015
ENST00000359354 FGFR2-016
ENST00000467584 FGFR2-020
ENST00000429361 FGFR2-021
ENST00000491475 FGFR2-022
ENST00000463870 FGFR2-023
ENST00000604236 FGFR2-024
ENST00000351936 FGFR2-201
ENST00000357555 FGFR2-202
ENST00000369061 FGFR2-203
Now going to http://www.ensembl.org/Homo_sapiens/Gene/Summary?db=core;g=ENSG00000066468;r=10:121478332-121598458 ... I learn that the canonical transcript is "FGFR2-206", not like my result "FGFR2-010"
I didn't find the display label "FGFR2-206" in the whole xref.
And I get fewer transcripts than listed on the WEB Page.
Please can someone tell me, where are the other coming from and why the database canonical transcript is not the WEB-page named one?
Thanks a lot!
Rawi
When I try to do a similar request for a canonical transcript using biomaRt:
I get the following output (with the canonical transcript similar to the Ensembl webpage for the gene and similar number of transcripts):
I have never used locally installed databases, but is it possible you are using a different version of the database (possibly an older version)?
Thanks manaswwm, it was indeed the version of the database, as pointed out by GenoMax... and me looking at the wrong Ensembl Site