Seqanswers Leaderboard Ad

Collapse

Announcement

Collapse
No announcement yet.
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • how to convert UCSC gene names to gene symbol

    T have got a list of genes in UCSC ID, such as "uc001awt.1 uc002mbq.2 uc003etw.1". But what I want is gene in symbol, such as "CDC6 MCM2 MCM3 MCM4 CDC2".
    I tried the tool mentioned in http://seqanswers.com/forums/showthr...sc+gene+symbol
    But it doesn't work since that tool seems can not recognize UCSC ID.
    Is there any tool that can convert UCSC name to the symbol? Or I used that tool in the wrong way?
    Thanks!

  • #2
    There's a conversion tool at the David website: http://david.abcc.ncifcrf.gov/conversion.jsp

    Comment


    • #3
      Through the UCSC genome browser:

      Select 'Tables' in the top of the page -> genome -> assembly -> gene and gene prediction tracks -> known gene-> paste/upload the list of accessions-> output format: selected fields from primary and... -> give an output file name -> get output-> choose 'name: name of gene' and 'gene symbol' -> get output -> there you are !!!

      regards!

      Comment


      • #4
        Originally posted by osvaldo View Post
        Through the UCSC genome browser:

        Select 'Tables' in the top of the page -> genome -> assembly -> gene and gene prediction tracks -> known gene-> paste/upload the list of accessions-> output format: selected fields from primary and... -> give an output file name -> get output-> choose 'name: name of gene' and 'gene symbol' -> get output -> there you are !!!

        regards!
        my 2p...

        You can implement osvaldo's solution as a script, if more suitable to your needs, assuming you have mysql on your machine:

        Code:
        assembly='mm9'       ## Species and assembly you want to query
        ucsc_ids="'uc007aet.1', 'uc007aeu.1', 'uc007aev.1'" ## IDs to convert
        
        mysql --user=genome --host=genome-mysql.cse.ucsc.edu --disable-auto-rehash -e \
        "SELECT DISTINCT knownGene.name, kgXref.geneSymbol
        FROM $assembly.knownGene INNER JOIN $assembly.kgXref ON
            knownGene.name = kgXref.kgID
        WHERE knownGene.name IN ($ucsc_ids);" > ucsc2symbols.txt
        
        cat ucsc2symbols.txt
        name	         geneSymbol
        uc007aet.1       mKIAA1889
        uc007aeu.1       Xkr4
        uc007aev.1       AK149000
        Best,
        Dario

        Comment


        • #5
          Thanks to all above.
          I've solved it. Try as below:
          UCSC->Table->clade(Mammal)->genome(Human)->assembly(GRch37/hg19)->group(Genes and Gene Prediction Tracks)->track(RefSeq Genes)->table(kgXref)->output format(selected fields from primary and related tables)->get output->select "kgID" and "geneSymbol", than get output.
          You'll get a file contains UCSC gene ID vs. symbol. Use this file to replace the UCSC gene ID with symbol in your refgene file.
          Last edited by gigigou; 08-09-2012, 01:05 AM.

          Comment


          • #6
            thanks!! this works!

            Comment

            Latest Articles

            Collapse

            • seqadmin
              Current Approaches to Protein Sequencing
              by seqadmin


              Proteins are often described as the workhorses of the cell, and identifying their sequences is key to understanding their role in biological processes and disease. Currently, the most common technique used to determine protein sequences is mass spectrometry. While still a valuable tool, mass spectrometry faces several limitations and requires a highly experienced scientist familiar with the equipment to operate it. Additionally, other proteomic methods, like affinity assays, are constrained...
              04-04-2024, 04:25 PM
            • seqadmin
              Strategies for Sequencing Challenging Samples
              by seqadmin


              Despite advancements in sequencing platforms and related sample preparation technologies, certain sample types continue to present significant challenges that can compromise sequencing results. Pedro Echave, Senior Manager of the Global Business Segment at Revvity, explained that the success of a sequencing experiment ultimately depends on the amount and integrity of the nucleic acid template (RNA or DNA) obtained from a sample. “The better the quality of the nucleic acid isolated...
              03-22-2024, 06:39 AM

            ad_right_rmr

            Collapse

            News

            Collapse

            Topics Statistics Last Post
            Started by seqadmin, 04-11-2024, 12:08 PM
            0 responses
            22 views
            0 likes
            Last Post seqadmin  
            Started by seqadmin, 04-10-2024, 10:19 PM
            0 responses
            24 views
            0 likes
            Last Post seqadmin  
            Started by seqadmin, 04-10-2024, 09:21 AM
            0 responses
            19 views
            0 likes
            Last Post seqadmin  
            Started by seqadmin, 04-04-2024, 09:00 AM
            0 responses
            50 views
            0 likes
            Last Post seqadmin  
            Working...
            X