Unconfigured Ad

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts
  • NicoBxl
    not just another member
    • Aug 2010
    • 264

    Ensembl id conversion

    Hi,

    I've a list of ensembl id ( from Bos Taurus )

    How can I convert this ids to entrez id or gene symbol per example ?

    Thanks

    N.
  • gaffa
    Member
    • Oct 2010
    • 82

    #2
    You could try UniProt's ID Mapping service (http://www.uniprot.org/ -> "ID Mapping" tab).

    Comment

    • whsqwghlm
      Member
      • Jun 2009
      • 14

      #3
      Or BioMart; http://www.ensembl.org/biomart/martview

      Comment

      • dariober
        Senior Member
        • May 2010
        • 311

        #4
        If you are willing to go for R/Bioconductor this might help:

        Code:
        library(biomaRt)
        mart<- useDataset("btaurus_gene_ensembl", useMart("ensembl"))
        
        ensembl_genes<- c("ENSBTAG00000026199", "ENSBTAG00000014685") ## etc...
        
        getBM(
          filters= "ensembl_gene_id", 
          attributes= c("ensembl_gene_id", "external_gene_id", "entrezgene", "description"),
          values= ensembl_genes,
          mart= mart)
        
             ensembl_gene_id external_gene_id entrezgene                                                                                                           description
        1 ENSBTAG00000014685       HPRT_BOVIN     613512 Hypoxanthine-guanine phosphoribosyltransferase (HGPRTase)(HGPRT)(EC 2.4.2.8) [Source:UniProtKB/Swiss-Prot;Acc:Q3SZ18]
        2 ENSBTAG00000014685       HPRT_BOVIN     510369 Hypoxanthine-guanine phosphoribosyltransferase (HGPRTase)(HGPRT)(EC 2.4.2.8) [Source:UniProtKB/Swiss-Prot;Acc:Q3SZ18]
        3 ENSBTAG00000014685       HPRT_BOVIN     281229 Hypoxanthine-guanine phosphoribosyltransferase (HGPRTase)(HGPRT)(EC 2.4.2.8) [Source:UniProtKB/Swiss-Prot;Acc:Q3SZ18]
        4 ENSBTAG00000014685       HPRT_BOVIN         NA Hypoxanthine-guanine phosphoribosyltransferase (HGPRTase)(HGPRT)(EC 2.4.2.8) [Source:UniProtKB/Swiss-Prot;Acc:Q3SZ18]
        5 ENSBTAG00000026199     Q862P9_BOVIN     280979                                                Bos taurus actin, beta (ACTB), mRNA. [Source:RefSeq DNA;Acc:NM_173979]
        >
        Dario

        Comment

        • NicoBxl
          not just another member
          • Aug 2010
          • 264

          #5
          thanks it's perfect !

          Comment

          • vkartha
            Member
            • Feb 2012
            • 28

            #6
            Originally posted by dariober View Post
            If you are willing to go for R/Bioconductor this might help:

            Code:
            library(biomaRt)
            mart<- useDataset("btaurus_gene_ensembl", useMart("ensembl"))
            
            ensembl_genes<- c("ENSBTAG00000026199", "ENSBTAG00000014685") ## etc...
            
            getBM(
              filters= "ensembl_gene_id", 
              attributes= c("ensembl_gene_id", "external_gene_id", "entrezgene", "description"),
              values= ensembl_genes,
              mart= mart)
            
                 ensembl_gene_id external_gene_id entrezgene                                                                                                           description
            1 ENSBTAG00000014685       HPRT_BOVIN     613512 Hypoxanthine-guanine phosphoribosyltransferase (HGPRTase)(HGPRT)(EC 2.4.2.8) [Source:UniProtKB/Swiss-Prot;Acc:Q3SZ18]
            2 ENSBTAG00000014685       HPRT_BOVIN     510369 Hypoxanthine-guanine phosphoribosyltransferase (HGPRTase)(HGPRT)(EC 2.4.2.8) [Source:UniProtKB/Swiss-Prot;Acc:Q3SZ18]
            3 ENSBTAG00000014685       HPRT_BOVIN     281229 Hypoxanthine-guanine phosphoribosyltransferase (HGPRTase)(HGPRT)(EC 2.4.2.8) [Source:UniProtKB/Swiss-Prot;Acc:Q3SZ18]
            4 ENSBTAG00000014685       HPRT_BOVIN         NA Hypoxanthine-guanine phosphoribosyltransferase (HGPRTase)(HGPRT)(EC 2.4.2.8) [Source:UniProtKB/Swiss-Prot;Acc:Q3SZ18]
            5 ENSBTAG00000026199     Q862P9_BOVIN     280979                                                Bos taurus actin, beta (ACTB), mRNA. [Source:RefSeq DNA;Acc:NM_173979]
            >
            Dario

            I try the same thing, but I don't get any results:

            library(biomaRt)
            mart<- useDataset("hsapiens_gene_ensembl", useMart("ensembl"))

            genes<-c("ENSG00000000003.10","ENSG00000000005.5","ENSG00000000419.8","ENSG00000000457.8","ENSG00000000460.11"))

            getBM(filters= "ensembl_gene_id", attributes= c("ensembl_gene_id", "entrezgene", "description"),values=genes,mart= mart)

            [1] ensembl_gene_id entrezgene description
            <0 rows> (or 0-length row.names)

            Comment

            • dariober
              Senior Member
              • May 2010
              • 311

              #7
              Originally posted by vkartha View Post
              I try the same thing, but I don't get any results:

              library(biomaRt)
              mart<- useDataset("hsapiens_gene_ensembl", useMart("ensembl"))

              genes<-c("ENSG00000000003.10","ENSG00000000005.5","ENSG00000000419.8","ENSG00000000457.8","ENSG00000000460.11"))

              getBM(filters= "ensembl_gene_id", attributes= c("ensembl_gene_id", "entrezgene", "description"),values=genes,mart= mart)

              [1] ensembl_gene_id entrezgene description
              <0 rows> (or 0-length row.names)
              I suspect the ensembl gene id should not include the "decimal" part (ENSG00000000003 instead of ENSG00000000003.10).

              Comment

              • zn_ab2010@yahoo.com
                Junior Member
                • Aug 2013
                • 1

                #8
                convert GI to Entrez

                hi, i have a list of genes from NCBI. does anyone know how to convert GI to Entrez?

                Comment

                • dpryan
                  Devon Ryan
                  • Jul 2011
                  • 3478

                  #9
                  Originally posted by [email protected] View Post
                  hi, i have a list of genes from NCBI. does anyone know how to convert GI to Entrez?
                  That's pretty easy to do in R with the various org.XX.eg.db packages (where XX is the abbreviation for whatever organism you're using).

                  Comment

                  • super0925
                    Senior Member
                    • Feb 2014
                    • 206

                    #10
                    Originally posted by dpryan View Post
                    That's pretty easy to do in R with the various org.XX.eg.db packages (where XX is the abbreviation for whatever organism you're using).

                    If I use Biomart http://www.ensembl.org/biomart/martview/ , is it better than R package (org.XX.eg.db )?
                    Last edited by super0925; 05-08-2014, 05:45 AM.

                    Comment

                    • dpryan
                      Devon Ryan
                      • Jul 2011
                      • 3478

                      #11
                      It might be more updated, though there's no guarantee there.

                      Comment

                      • super0925
                        Senior Member
                        • Feb 2014
                        • 206

                        #12
                        Originally posted by dpryan View Post
                        It might be more updated, though there's no guarantee there.
                        Hi if I have a list of genes by Ensembl ID or Gene namein cows, I want to covert them to human Ensembl ID and Gene name. I could do it by website http://www.ensembl.org/biomart/martview/ I know how to do it .
                        But it is not automatically. Could you please recommend a R package to achieve the Gene-ID converter?

                        Comment

                        • dpryan
                          Devon Ryan
                          • Jul 2011
                          • 3478

                          #13
                          There's a biomaRt package that's an interface to biomart, but aside from that I'm not aware of anything. Of course, this isn't something that I ever need to do, so me not knowing of a package for it doesn't mean much.

                          Comment

                          • super0925
                            Senior Member
                            • Feb 2014
                            • 206

                            #14
                            Originally posted by dpryan View Post
                            There's a biomaRt package that's an interface to biomart, but aside from that I'm not aware of anything. Of course, this isn't something that I ever need to do, so me not knowing of a package for it doesn't mean much.
                            Thank you !I will try to download that package and try it.

                            Comment

                            Latest Articles

                            Collapse

                            ad_right_rmr

                            Collapse

                            News

                            Collapse

                            Topics Statistics Last Post
                            Started by SEQadmin2, 06-05-2026, 10:09 AM
                            0 responses
                            12 views
                            0 reactions
                            Last Post SEQadmin2  
                            Started by SEQadmin2, 06-04-2026, 08:59 AM
                            0 responses
                            23 views
                            0 reactions
                            Last Post SEQadmin2  
                            Started by SEQadmin2, 06-02-2026, 12:03 PM
                            0 responses
                            28 views
                            0 reactions
                            Last Post SEQadmin2  
                            Started by SEQadmin2, 06-02-2026, 11:40 AM
                            0 responses
                            22 views
                            0 reactions
                            Last Post SEQadmin2  
                            Working...