Unconfigured Ad

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts
  • Liam_Gallagher
    Member
    • Oct 2011
    • 18

    Combine annotations

    Hi all...could you suggest me a way to combine annotations coming from different files and related to the same subject (e.g. the same genomic coordinate) ? I was thinking about Annovar (tool to annotate nucleotide variants, indels, etc.) which produces a lot of files...and usually I use Excel to combine all of this annotations in one final document containing all the informations.
    This method works, but it takes me a lot of time....
    Thank you!

    Another question: how can I annotate a BED file containing a list of genomic coordinates, with corrisponding Gene Symbols ? I tried using the UCSC genome browser (tables section), but I was able to annotate just with ucsc gene names, and not with normal names (like Hugo symbol names). BEDTools can do it ? thanks!
  • jxchong
    Junior Member
    • Feb 2013
    • 6

    #2
    Annovar has a summarize_annovar.pl script you can take a look at...

    Personally, I combine the annotations using my own scripts. Excel is definitely not that way to do it!! You're just going to end up making mistakes, plus Excel can't handle more than a handful of data sets.

    Comment

    • Liam_Gallagher
      Member
      • Oct 2011
      • 18

      #3
      Yes...I know about summarize_annovar, but I was not able to get it working...because of an error. Today I tried to redownload some database, and now it works fine!
      Fortunately I have just some variant to annotate (we look just at some gene...it's not a big sequencing project..) and to do it I use a macro that I've written...and do the work automatically. But to combine all the input file to process with my macro, it takes time....so i was wondering if you know other tools that do it..however thank you for the suggestions!

      What about my second question (to annotate a bed file with hgnc gene symbols) ?! :-)


      Originally posted by jxchong View Post
      Annovar has a summarize_annovar.pl script you can take a look at...

      Personally, I combine the annotations using my own scripts. Excel is definitely not that way to do it!! You're just going to end up making mistakes, plus Excel can't handle more than a handful of data sets.

      Comment

      • jxchong
        Junior Member
        • Feb 2013
        • 6

        #4
        The other tool would be writing a script yourself to do it (usually Perl or Python)


        Comment

        • AlexReynolds
          Member
          • Feb 2013
          • 45

          #5
          Originally posted by Liam_Gallagher View Post
          Another question: how can I annotate a BED file containing a list of genomic coordinates, with corrisponding Gene Symbols ? I tried using the UCSC genome browser (tables section), but I was able to annotate just with ucsc gene names, and not with normal names (like Hugo symbol names). BEDTools can do it ? thanks!
          BEDOPS is another suite of tools for manipulating BED data.

          You can use the bedmap tool to annotate genomic regions with IDs or other data from other sets (gene names, etc.).

          As an example, if you have regions in a sorted file called Regions.bed and your genes in a sorted file called Genes.bed (where gene IDs are in the fourth column, per UCSC specification), the file AnnotatedRegions.bed will contain your answer:

          Code:
          $ bedmap --echo --echo-map-id --delim '\t' Regions.bed Genes.bed > AnnotatedRegions.bed
          The only requirement is that the inputs are sorted. Use the sort-bed utility for this purpose, e.g.:

          Code:
          $ sort-bed UnsortedRegions.bed > SortedRegions.bed

          Comment

          • Liam_Gallagher
            Member
            • Oct 2011
            • 18

            #6
            Originally posted by AlexReynolds View Post
            BEDOPS is another suite of tools for manipulating BED data.

            You can use the bedmap tool to annotate genomic regions with IDs or other data from other sets (gene names, etc.).

            As an example, if you have regions in a sorted file called Regions.bed and your genes in a sorted file called Genes.bed (where gene IDs are in the fourth column, per UCSC specification), the file AnnotatedRegions.bed will contain your answer:

            Code:
            $ bedmap --echo --echo-map-id --delim '\t' Regions.bed Genes.bed > AnnotatedRegions.bed
            The only requirement is that the inputs are sorted. Use the sort-bed utility for this purpose, e.g.:

            Code:
            $ sort-bed UnsortedRegions.bed > SortedRegions.bed
            Thank you very much for your suggestions....they are very helpful!!

            Comment

            Latest Articles

            Collapse

            • SEQadmin2
              Proteomic Platforms: How to Choose the Right Analytical Strategy to Improve Detection and Clinical Applications
              by SEQadmin2


              Proteomics platforms are evolving rapidly, with advances in mass spectrometry and affinity-based approaches expanding what researchers can detect and at what scale. As the field moves toward deeper proteome coverage and clinical applications, scientists face an increasingly complex landscape of tools. This article will explore how researchers are navigating these choices to find the right platform for their work.

              The systematic characterization of the human proteome has
              ...
              Today, 11:48 AM
            • SEQadmin2
              Advanced Sequencing Platforms Tackle Neuroscience’s Toughest Genomics Problems
              by SEQadmin2



              Genomics studies in neuroscience face a special challenge due to the brain’s complexity and scarcity of samples. Mapping changes in cell type and state using conventional next-generation sequencing methods remains challenging. Advances in technologies like single-cell sequencing, spatial transcriptomics, and long-read sequencing have opened the door to deeper studies of the brain and diseases like Alzheimer’s, amyotrophic lateral sclerosis (ALS), and schizophrenia.
              ...
              07-09-2026, 11:10 AM
            • SEQadmin2
              Cancer Drug Resistance: The Lingering Barrier to Rising Survival
              by SEQadmin2



              Cancer survival rates have significantly increased in the last few decades in the United States, reaching a combined 70% 5-year survival rate by 2021. Behind this number, there are years of research to find new therapies, drug targets, and early detection methods. But there is one core challenge that keeps slowing down these advances, and it’s about drug resistance.

              There is no single reason why many patients don’t respond to treatment as expected. Cancer is...
              07-08-2026, 05:17 AM

            ad_right_rmr

            Collapse

            News

            Collapse

            Topics Statistics Last Post
            Started by SEQadmin2, Today, 11:10 AM
            0 responses
            8 views
            0 reactions
            Last Post SEQadmin2  
            Started by SEQadmin2, 07-13-2026, 10:26 AM
            0 responses
            30 views
            0 reactions
            Last Post SEQadmin2  
            Started by SEQadmin2, 07-09-2026, 10:04 AM
            0 responses
            39 views
            0 reactions
            Last Post SEQadmin2  
            Started by SEQadmin2, 07-08-2026, 10:08 AM
            0 responses
            25 views
            0 reactions
            Last Post SEQadmin2  
            Working...