<html>
  <head>
    <meta content="text/html; charset=ISO-8859-1"
      http-equiv="Content-Type">
  </head>
  <body bgcolor="#FFFFFF" text="#000000">
    Dear Ying,<br>
    As I said on the link you are quoting, we recommend people to use
    the perl API :
    <a class="moz-txt-link-freetext" href="http://www.ensembl.org/info/docs/Doxygen/core-api/index.html">http://www.ensembl.org/info/docs/Doxygen/core-api/index.html</a><br>
    <br>
    The only way you can map the reads with a gene is with the
    seq_region(_id/_start/_end/_strand) information.<br>
    If you know the stable id (ENSG000....) of the gene you are
    interested in, it's quite simple with the API:<br>
    <br>
    <pre>$db = new Bio::EnsEMBL::DBAdaptor(
                -host => 'ensembldb.ensembl.org',
                -port => 5306,
                -user => 'anonymous',
                -dbname => 'homo_sapiens_core_65_37');
$ga = $db->get_GeneAdaptor();
$gene = $ga->fetch_by_stable_id("ENSG000XXXX");
$slice = $gene->slice;
$rnaseqdb = new Bio::EnsEMBL::DBAdaptor(
                -host => 'ensembldb.ensembl.org',
                -port => 5306,
                -user => 'anonymous',
                -dbname => 'homo_sapiens_rnaseq_65_37');
$rnaseqsa = $rnaseqdb->get_SliceAdaptor();
$rnaseqslice = $rnaseqsa->fetch_by_name($slice->name);
@transcripts = @{$rnaseqslice->get_all_Transcripts('skeletal_rnaseq')};
foreach my $transcript (@transcripts) {
   foreach my $sf (@{$transcript->get_all_supporting_features()}) {
        #We print the number of reads that spanned accross the intron
        print STDOUT $sf->hit_name, ' :', $sf->score, "\n";
   }
}
</pre>
    The number of reads that span the introns is the score you can find
    in the dna_align_feature table of the rnaseq database.<br>
    <br>
    Regards,<br>
    Thibaut<br>
    <br>
    <br>
    On 27/01/12 19:09, Li, Ying L wrote:<br>
    <pre wrap="">Dear Thibaut,



I am trying to get the ensemble human bodymap with gene or transcript.  And I followed your instruction at the this blog site: <a class="moz-txt-link-freetext" href="http://lists.ensembl.org/pipermail/dev/2011-August/001593.html">http://lists.ensembl.org/pipermail/dev/2011-August/001593.html</a>



I am able to setup an oracle schema to do the following query:

SELECT t.* , sr.name

FROM rnaseq37_analysis a, rnaseq37_transcript t

LEFT JOIN rnaseq37_seq_region sr

ON sr.seq_region_id = t.seq_region_id

WHERE t.analysis_id = a.analysis_id

AND a.logic_name = 'skeletal_rnaseq'

;



TRANSCRIPT_ID

GENE_ID

ANALYSIS_ID

SEQ_REGION_ID

SEQ_REGION_START

SEQ_REGION_END

SEQ_REGION_STRAND

DISPLAY_XREF_ID

BIOTYPE

STATUS

DESCRIPTION

IS_CURRENT

CANONICAL_TRANSLATION_ID

STABLE_ID

VERSION

CREATED_DATE

MODIFIED_DATE

NAME

840249

585754

8244

27517

184298181

184300196

1

\N

protein_coding

PREDICTED

\N

1

593641

ROUGHT00000241809

1

2011-01-12 10:33:07

2011-01-12 10:33:07

3

840251

585756

8244

27523

74332013

74659111

-1

\N

protein_coding

PREDICTED

\N

1

593643

ROUGHT00000241811

1

2011-01-12 10:33:07

2011-01-12 10:33:07

8

840252

585758

8244

27523

74702071

74742711

-1

\N

protein_coding

PREDICTED

\N

1

593644

ROUGHT00000241812

1

2011-01-12 10:33:07

2011-01-12 10:33:07

8

840254

585759

8244

27523

74857620

74885297

-1

\N

protein_coding

PREDICTED

\N

1

593646

ROUGHT00000241814

1

2011-01-12 10:33:07

2011-01-12 10:33:07

8

840256

585761

8244

27523

74887723

74895618

1

\N

protein_coding

PREDICTED

\N

1

593648

ROUGHT00000241816

1

2011-01-12 10:33:07

2011-01-12 10:33:07

8

840257

585762

8244

27523

74903474

74917165

1

\N

protein_coding

PREDICTED

\N

1

593649

ROUGHT00000241817

1

2011-01-12 10:33:07

2011-01-12 10:33:07

8

840259

585764

8244

27523

74921628

74941367

1

\N

protein_coding

PREDICTED

\N

1

593651

ROUGHT00000241819

1

2011-01-12 10:33:07

2011-01-12 10:33:07

8

840261

585766

8244

27523

75015772

75019126

1

\N

protein_coding

PREDICTED

\N

1

593653

ROUGHT00000241820

1

2011-01-12 10:33:07

2011-01-12 10:33:07

8

840264

585768

8244

27519

15260701

15375468

-1

\N

protein_coding

PREDICTED

\N

1

593656

ROUGHT00000241821

1

2011-01-12 10:33:07

2011-01-12 10:33:07

12

840266

585770

8244

27519

15742384

15751506

1

\N

protein_coding

PREDICTED

\N

1

593658

ROUGHT00000241822

1

2011-01-12 10:33:07

2011-01-12 10:33:07

12



Now I need to map the gene_id or transcript_id to some kind of standard id (eg ensg00000*****) so that I can tell what gene is the gene_id regards to, do you know what is the best way to do so? if you can tell me how to map the gene_id? In additional, do you know if there is a ‘# of read” for the rnaseq data?



Thanks a lot for your help,



Best regards,

Ying</pre>
    <br>
    <blockquote
cite="mid:E46287FE394C3C48A4809C14644D5125012B79F402@RNUMSEM706.nala.roche.com"
      type="cite">
      <pre wrap="">
Hi there,

I am on your mailing list, so resubmitting this question -- see attached file.

Thanks a lot for your help.

Best,
Ying
-----Original Message-----
From: <a class="moz-txt-link-abbreviated" href="mailto:dev-bounces@ensembl.org">dev-bounces@ensembl.org</a> [<a class="moz-txt-link-freetext" href="mailto:dev-bounces@ensembl.org">mailto:dev-bounces@ensembl.org</a>] On Behalf Of <a class="moz-txt-link-abbreviated" href="mailto:dev-owner@ensembl.org">dev-owner@ensembl.org</a>
Sent: Wednesday, January 25, 2012 4:52 PM
To: Li, Ying L {PXTP~Nutley}
Subject: Re: [ensembl-dev] Download human body map 2.0 transcript coordinates

The Ensembl dev mailing list only accepts postings from people who are subscribed. You can subscribe or unsubscribe at <a class="moz-txt-link-freetext" href="http://lists.ensembl.org/mailman/listinfo/dev">http://lists.ensembl.org/mailman/listinfo/dev</a>

</pre>
      <br>
      <fieldset class="mimeAttachmentHeader"></fieldset>
      <br>
      <pre wrap="">_______________________________________________
Dev mailing list    <a class="moz-txt-link-abbreviated" href="mailto:Dev@ensembl.org">Dev@ensembl.org</a>
List admin (including subscribe/unsubscribe): <a class="moz-txt-link-freetext" href="http://lists.ensembl.org/mailman/listinfo/dev">http://lists.ensembl.org/mailman/listinfo/dev</a>
Ensembl Blog: <a class="moz-txt-link-freetext" href="http://www.ensembl.info/">http://www.ensembl.info/</a>
</pre>
    </blockquote>
  </body>
</html>