Seqanswers Leaderboard Ad

Collapse

Announcement

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

  • Subsampling bam files

    Hello,

    I need to extract reads from a bam file - for each genomic position, I need to extract a different number of reads.

    Eg.
    CHR START END #READS
    2 12345 12350 10
    2 14567 14568 7

    I have gone through samtools, and cannot see a way to sample a specified number of reads for each position. I have also ran into some elegant perl scripts that will do this by position and %, but not variable for each position.

    Can anyone help?
    Thanks in advance!

  • #2
    First of all sort and index your bam file.
    Then you can use a shell script like this:

    samtools view input.bam 2:12345-12350 | head 10

    The head command will get the desired number of reads.

    Comment


    • #3
      header works

      Thanks! For what I needed worked like a charm!

      The one problem with this command, is that it includes all heads -> you have to use head n+y
      This y is the number of lines before the actual reads (^@), and is specific to each bam file.
      It works great for a couple of files (my case), but will not work if you want to automate it for a larger number of files (unless you code that in as well).

      cheers

      Comment


      • #4
        It is strange. Samtools view show headers only, when you use -h parameter.
        Or you can use grep -v "^@" to remove header.

        You can use it in a bash scripts.

        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, Yesterday, 08:47 AM
        0 responses
        13 views
        0 likes
        Last Post seqadmin  
        Started by seqadmin, 04-11-2024, 12:08 PM
        0 responses
        60 views
        0 likes
        Last Post seqadmin  
        Started by seqadmin, 04-10-2024, 10:19 PM
        0 responses
        60 views
        0 likes
        Last Post seqadmin  
        Started by seqadmin, 04-10-2024, 09:21 AM
        0 responses
        54 views
        0 likes
        Last Post seqadmin  
        Working...
        X