Seqanswers Leaderboard Ad

Collapse

Announcement

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

  • Trying to get binned GC content in hg19

    Hi,

    I have a large (~2 million) set of SNPs and I would like to know the GC content +/- 500 bp from the variants. I have some Python and Unix skills, but am not an expert. I have download the hg19 gc5Base from the UCSC table browser, which has the GC content in 5 bp bins across the genome:

    $ more hg19.gc5Base.txt
    variableStep chrom=chr1 span=5
    10001 40
    10006 40
    10011 40
    10016 60
    10021 60
    10026 60


    But I am not sure of the best way to get specific regions from this file based on the SNPs I am interested in. Any help would be appreciated!

  • #2
    One simple way I can think of with minimal coding work is to create a bed file with regions +/- 500 bp for each SNP. You could likely do it with a simple unix command. If the SNPs are in a VCF, something like this could work:

    Code:
    awk '! /\#/' SNPs.vcf | awk '{print $1"\t"($2-500)"\t"($2+500)}' > SNP_Regions.bed
    You can then use bedtools nuc module to get the GC content for each region.

    Code:
    bedtools nuc -fi hg19.fa -bed SNP_Regions.bed
    as detailed in this post:

    Last edited by vivek_; 04-14-2014, 08:57 AM. Reason: typos

    Comment


    • #3
      This is a great suggestion. I will give it a try today!

      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
      31 views
      0 likes
      Last Post seqadmin  
      Started by seqadmin, 04-10-2024, 10:19 PM
      0 responses
      32 views
      0 likes
      Last Post seqadmin  
      Started by seqadmin, 04-10-2024, 09:21 AM
      0 responses
      28 views
      0 likes
      Last Post seqadmin  
      Started by seqadmin, 04-04-2024, 09:00 AM
      0 responses
      53 views
      0 likes
      Last Post seqadmin  
      Working...
      X