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
          Recent Advances in Sequencing Analysis Tools
          by seqadmin


          The sequencing world is rapidly changing due to declining costs, enhanced accuracies, and the advent of newer, cutting-edge instruments. Equally important to these developments are improvements in sequencing analysis, a process that converts vast amounts of raw data into a comprehensible and meaningful form. This complex task requires expertise and the right analysis tools. In this article, we highlight the progress and innovation in sequencing analysis by reviewing several of the...
          Yesterday, 07:48 AM
        • 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

        ad_right_rmr

        Collapse

        News

        Collapse

        Topics Statistics Last Post
        Started by seqadmin, Today, 06:57 AM
        0 responses
        9 views
        0 likes
        Last Post seqadmin  
        Started by seqadmin, Yesterday, 07:17 AM
        0 responses
        13 views
        0 likes
        Last Post seqadmin  
        Started by seqadmin, 05-02-2024, 08:06 AM
        0 responses
        19 views
        0 likes
        Last Post seqadmin  
        Started by seqadmin, 04-30-2024, 12:17 PM
        0 responses
        22 views
        0 likes
        Last Post seqadmin  
        Working...
        X