Seqanswers Leaderboard Ad

Collapse

Announcement

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

  • Identify SNP intervals

    I was wondering what the best tool is to use if you have a set of SNPs and a list of intervals on chromosomes, how do you determine how many SNPs are in each interval? So far I have been writing my own code, which has been very inefficient. It takes days to run. I was wondering if there is a program that will do this?

  • #2
    If you have the chromosome co-ordinates of your SNPs, you could use Bedtools.

    Save your list of SNPs in bed format as SNP.bed

    chr1 100 101 rs1
    chr1 105 106 rs2
    chr1 110 111 rs3
    chr1 5000 5001 rs_not_in_interval
    chr2 100 101 rs4
    chr2 105 106 rs5
    chr2 110 111 rs6
    chr2 120 121 rs7
    chr2 400 401 rs_not_in_interval


    Save your list of intervals in bed format as Intervals.bed

    chr1 99 120
    chr2 11 130

    Then use bedtools intersectBed:

    Code:
    intersectBed -a SNP.bed -b Intervals.bed -wb >SNPs.in.intervals.bed
    This will return all SNPs that are in the intervals, and show which interval they are in:

    chr1 100 101 rs1 chr1 99 120
    chr1 105 106 rs2 chr1 99 120
    chr1 110 111 rs3 chr1 99 120
    chr2 100 101 rs4 chr2 11 130
    chr2 105 106 rs5 chr2 11 130
    chr2 110 111 rs6 chr2 11 130
    chr2 120 121 rs7 chr2 11 130

    To go one further and count how many SNPs are in each interval:

    Code:
    intersectBed -a SNP.bed -b Interval.bed -wb | awk -F"\t" '{print$5" "$6" "$7}' | uniq -c
    3 chr1 99 120
    4 chr2 11 130

    First column gives counts of SNPs in each interval
    Last edited by rbagnall; 02-05-2014, 06:49 PM.

    Comment


    • #3
      that's what I usually do

      Originally posted by rbagnall View Post
      If you have the chromosome co-ordinates of your SNPs, you could use Bedtools.

      Save your list of SNPs in bed format as SNP.bed

      chr1 100 101 rs1
      chr1 105 106 rs2
      chr1 110 111 rs3
      chr1 5000 5001 rs_not_in_interval
      chr2 100 101 rs4
      chr2 105 106 rs5
      chr2 110 111 rs6
      chr2 120 121 rs7
      chr2 400 401 rs_not_in_interval


      Save your list of intervals in bed format as Intervals.bed

      chr1 99 120
      chr2 11 130

      Then use bedtools intersectBed:

      Code:
      intersectBed -a SNP.bed -b Intervals.bed -wb >SNPs.in.intervals.bed
      This will return all SNPs that are in the intervals, and show which interval they are in:

      chr1 100 101 rs1 chr1 99 120
      chr1 105 106 rs2 chr1 99 120
      chr1 110 111 rs3 chr1 99 120
      chr2 100 101 rs4 chr2 11 130
      chr2 105 106 rs5 chr2 11 130
      chr2 110 111 rs6 chr2 11 130
      chr2 120 121 rs7 chr2 11 130

      To go one further and count how many SNPs are in each interval:

      Code:
      intersectBed -a SNP.bed -b Interval.bed -wb | awk -F"\t" '{print$5" "$6" "$7}' | uniq -c
      3 chr1 99 120
      4 chr2 11 130

      First column gives counts of SNPs in each interval

      Comment


      • #4
        If you know any R then the GenomicRanges package does that using countOverlaps and or findOverlaps. You can then subset the SNPs based on the results.

        Comment

        Latest Articles

        Collapse

        • seqadmin
          Essential Discoveries and Tools in Epitranscriptomics
          by seqadmin




          The field of epigenetics has traditionally concentrated more on DNA and how changes like methylation and phosphorylation of histones impact gene expression and regulation. However, our increased understanding of RNA modifications and their importance in cellular processes has led to a rise in epitranscriptomics research. “Epitranscriptomics brings together the concepts of epigenetics and gene expression,” explained Adrien Leger, PhD, Principal Research Scientist...
          04-22-2024, 07:01 AM
        • 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

        ad_right_rmr

        Collapse

        News

        Collapse

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