Announcement

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

  • Is there an easy way to filter SAM/BAM files with NM>0

    Hi, everyone

    BAM files contain the informations like
    "AS:i:-8 XM:i:0 XO:i:0 XG:i:0 MD:Z:100 NM:i:0 XS:A:+ NH:i:1".
    NM means not matched bp numbers.

    Now I wanted to pick the reads that are totally mapped to the ref sequence.

    I have tried to use Picard SamToFastq and tophat/bowtie2 -N 0 to get the final BAM, but samtools view -f 8 cannot correctly pick the single mapped reads, so SamToFastq didin't work well.

    So is there an easy way to filter SAM/BAM files with NM>0 .

    Thanks.

  • #2
    Using my program sam.js https://github.com/lindenb/jvarkit/wiki/SamJS

    Code:
     java -jar  dist/samjs.jar  -e 'parseInt(record.getAttribute("NM"))===0'  your.bam

    Comment


    • #3
      This should give you the NM:0 alignments in sam format:

      samtools view file.bam | awk '$0 ~"NM:i:0"' > perfect-match.sam

      Comment


      • #4
        Originally posted by Chipper View Post
        This should give you the NM:0 alignments in sam format:

        samtools view file.bam | awk '$0 ~"NM:i:0"' > perfect-match.sam
        Thanks it worked well.

        I added the header and IGV can use the bam.

        Comment

        Latest Articles

        Collapse

        • seqadmin
          Advanced Methods for the Detection of Infectious Disease
          by seqadmin




          The recent pandemic caused worldwide health, economic, and social disruptions with its reverberations still felt today. A key takeaway from this event is the need for accurate and accessible tools for detecting and tracking infectious diseases. Timely identification is essential for early intervention, managing outbreaks, and preventing their spread. This article reviews several valuable tools employed in the detection and surveillance of infectious diseases.
          ...
          Yesterday, 01:15 PM
        • seqadmin
          Strategies for Investigating the Microbiome
          by seqadmin




          Microbiome research has led to the discovery of important connections to human and environmental health. Sequencing has become a core investigational tool in microbiome research, a subject that we covered during a recent webinar. Our expert speakers shared a number of advancements including improved experimental workflows, research involving transmission dynamics, and invaluable analysis resources. This article recaps their informative presentations, offering insights...
          11-09-2023, 07:02 AM

        ad_right_rmr

        Collapse

        News

        Collapse

        Topics Statistics Last Post
        Started by seqadmin, Yesterday, 08:12 AM
        0 responses
        14 views
        0 likes
        Last Post seqadmin  
        Started by seqadmin, 11-22-2023, 09:29 AM
        1 response
        46 views
        0 likes
        Last Post VilliamPast  
        Started by seqadmin, 11-22-2023, 08:53 AM
        0 responses
        30 views
        0 likes
        Last Post seqadmin  
        Started by seqadmin, 11-21-2023, 08:24 AM
        0 responses
        23 views
        0 likes
        Last Post seqadmin  
        Working...
        X