Seqanswers Leaderboard Ad

Collapse

Announcement

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

  • SAM: extract both pairs where at least one pair mapped

    Hi,

    I want to extract both pairs from a SAM file where at least one pair mapped (or both). The ideal solution would be to get 2 fastq files where either both reads mapped, or only one pair mapped and the unmapped pair is also extracted.

    I tried various flag combination with "samtools view" but didn't get the desired result. So far I know how to get all mapped reads, but the unmapped second pair is missing.

    Thanks, Stephan

  • #2
    Not sure if this would help. There's a tool here:



    that gives you the flag for whatever you're after.

    Comment


    • #3
      Thanks. I've already tried that, but I'm not sure which flags to use.

      Stephan

      Comment


      • #4
        Code:
        samtools view -F 12 whatever.bam
        should get all the reads where both mapped.

        Code:
        samtools view -f 4 -F 8 whatever.bam
        should get all the reads that did not map, but whose mate mapped

        Code:
        samtools view -f 8 -F 4 whatever.bam
        Should get all the reads that mapped, but whose mates did not.

        Or, do

        Code:
        samtools view -f 12 whatever.bam
        To get all the reads where neither one mapped, then collect all those read names, and get everything not in that list.

        Comment


        • #5
          Thanks! I just tried it and it works perfectly.

          Stephan

          Comment

          Latest Articles

          Collapse

          • seqadmin
            Choosing Between NGS and qPCR
            by seqadmin



            Next-generation sequencing (NGS) and quantitative polymerase chain reaction (qPCR) are essential techniques for investigating the genome, transcriptome, and epigenome. In many cases, choosing the appropriate technique is straightforward, but in others, it can be more challenging to determine the most effective option. A simple distinction is that smaller, more focused projects are typically better suited for qPCR, while larger, more complex datasets benefit from NGS. However,...
            10-18-2024, 07:11 AM
          • seqadmin
            Non-Coding RNA Research and Technologies
            by seqadmin




            Non-coding RNAs (ncRNAs) do not code for proteins but play important roles in numerous cellular processes including gene silencing, developmental pathways, and more. There are numerous types including microRNA (miRNA), long ncRNA (lncRNA), circular RNA (circRNA), and more. In this article, we discuss innovative ncRNA research and explore recent technological advancements that improve the study of ncRNAs.

            Nobel Prize for MicroRNA Discovery
            This week,...
            10-07-2024, 08:07 AM

          ad_right_rmr

          Collapse

          News

          Collapse

          Topics Statistics Last Post
          Started by seqadmin, Yesterday, 06:09 AM
          0 responses
          10 views
          0 likes
          Last Post seqadmin  
          Started by seqadmin, 10-30-2024, 05:31 AM
          0 responses
          12 views
          0 likes
          Last Post seqadmin  
          Started by seqadmin, 10-24-2024, 06:58 AM
          0 responses
          22 views
          0 likes
          Last Post seqadmin  
          Started by seqadmin, 10-23-2024, 08:43 AM
          0 responses
          52 views
          0 likes
          Last Post seqadmin  
          Working...
          X