Unconfigured Ad

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts
  • gigigou
    Member
    • May 2012
    • 31

    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!
  • Thomas Doktor
    Senior Member
    • Apr 2009
    • 105

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

    Comment

    • osvaldo
      Junior Member
      • Mar 2011
      • 1

      #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

      • dariober
        Senior Member
        • May 2010
        • 311

        #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

        • gigigou
          Member
          • May 2012
          • 31

          #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

          • ildem
            Junior Member
            • Jan 2015
            • 5

            #6
            thanks!! this works!

            Comment

            Latest Articles

            Collapse

            • GATTACAT
              Reply to Nine Things a Sample Prep Scientist Thinks About Before Sequencing
              by GATTACAT
              Love this - good data definitely starts from good input, and poor input can only give relatively poor data. I particularly like the mention of Nanodrop/absorbance based methods for quantification. It's such a toss up if you'll get an accurate reading or what amounts to a randomly generated number, and a lot of library/sequencing related issues can be traced back to poor quant.
              Yesterday, 11:43 AM
            • SEQadmin2
              Nine Things a Sample Prep Scientist Thinks About Before Sequencing
              by SEQadmin2


              I’m not a sequencing expert. I’m a purification scientist who uses NGS to evaluate workflows my group develops. With this perspective, we think about the sample first and the NGS workflow second. The sequencer is an exceptionally honest reporter, but it can only report on what you give it, so whether you get clean, interpretable data from an NGS workflow is largely determined before you begin.

              Here are nine questions we think about, in roughly the order they matter, before...
              06-18-2026, 07:11 AM

            ad_right_rmr

            Collapse

            News

            Collapse

            Topics Statistics Last Post
            Started by SEQadmin2, Today, 11:08 AM
            0 responses
            6 views
            0 reactions
            Last Post SEQadmin2  
            Started by SEQadmin2, 06-30-2026, 05:37 AM
            0 responses
            11 views
            0 reactions
            Last Post SEQadmin2  
            Started by SEQadmin2, 06-26-2026, 11:10 AM
            0 responses
            19 views
            0 reactions
            Last Post SEQadmin2  
            Started by SEQadmin2, 06-17-2026, 06:09 AM
            0 responses
            53 views
            0 reactions
            Last Post SEQadmin2  
            Working...