Seqanswers Leaderboard Ad

Collapse

Announcement

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

  • Samtools index/sort/rmdup

    I am trying to filter several steps before the mpileup:
    1) samtools sort -n in.bam out.bam # sort the bam file
    2) samtools rmdup -sS in.srt.bam out.bam # remove PCR duplicates
    3) samtools view -b -F 1024 -q 20 *.bam > out.bam # filter duplicates reads and mapping quality
    4) samools index .bam # give a index so that for mpileup

    However, for the index step, it shows
    "[bam_index_core] the alignment is not sorted: reads without coordinates prior to reads with coordinates." Anything wrong here?

  • #2
    samtools sort -n sorts by name, not coordinate.. index requires sort by coordinate..

    Comment


    • #3
      Originally posted by peromhc View Post
      samtools sort -n sorts by name, not coordinate.. index requires sort by coordinate..
      So that I can sort without "-n" again and then index the bam file? Thanks.

      Comment


      • #4
        Originally posted by hanleng View Post
        So that I can sort without "-n" again and then index the bam file? Thanks.
        yep.. you should check out the git version with multithreaded sort -@ flag.. you're doing a lot of sorting!

        Comment


        • #5
          Originally posted by peromhc View Post
          yep.. you should check out the git version with multithreaded sort -@ flag.. you're doing a lot of sorting!
          I do not want to a lot of sorting - I just want to filter some reads before doing the mpileup...

          Comment


          • #6
            Originally posted by hanleng View Post
            I am trying to filter several steps before the mpileup:
            1) samtools sort -n in.bam out.bam # sort the bam file
            2) samtools rmdup -sS in.srt.bam out.bam # remove PCR duplicates
            3) samtools view -b -F 1024 -q 20 *.bam > out.bam # filter duplicates reads and mapping quality
            4) samools index .bam # give a index so that for mpileup
            samtools rmdup doesn't mark duplicates with 1024, it just removes them. So you don't need to filter for that. And why not filter before you sort? It would save a bit of time.

            And mpileup doesn't actually require an index.

            Comment


            • #7
              Originally posted by swbarnes2 View Post
              samtools rmdup doesn't mark duplicates with 1024, it just removes them. So you don't need to filter for that. And why not filter before you sort? It would save a bit of time.

              And mpileup doesn't actually require an index.
              According to my understanding, rmdup remove PCR duplicates, and -F 1024 remove duplicates reads, right? I just want to remove all kinds of duplicates to call SNP, so is this correct?

              Comment


              • #8
                Originally posted by hanleng View Post
                According to my understanding, rmdup remove PCR duplicates, and -F 1024 remove duplicates reads, right? I just want to remove all kinds of duplicates to call SNP, so is this correct?
                -F 1024 will remove all reads that have the 1024 flag set. If you don't run any software which will ever set that flag, then there's nothing with that flag to remove. I don't think anything in the samtools suite will ever set that flag. Picard's MarkDuplicates will, but samtools rmdup won't.

                Comment

                Latest Articles

                Collapse

                • 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
                • seqadmin
                  Strategies for Sequencing Challenging Samples
                  by seqadmin


                  Despite advancements in sequencing platforms and related sample preparation technologies, certain sample types continue to present significant challenges that can compromise sequencing results. Pedro Echave, Senior Manager of the Global Business Segment at Revvity, explained that the success of a sequencing experiment ultimately depends on the amount and integrity of the nucleic acid template (RNA or DNA) obtained from a sample. “The better the quality of the nucleic acid isolated...
                  03-22-2024, 06:39 AM

                ad_right_rmr

                Collapse

                News

                Collapse

                Topics Statistics Last Post
                Started by seqadmin, 04-11-2024, 12:08 PM
                0 responses
                24 views
                0 likes
                Last Post seqadmin  
                Started by seqadmin, 04-10-2024, 10:19 PM
                0 responses
                25 views
                0 likes
                Last Post seqadmin  
                Started by seqadmin, 04-10-2024, 09:21 AM
                0 responses
                22 views
                0 likes
                Last Post seqadmin  
                Started by seqadmin, 04-04-2024, 09:00 AM
                0 responses
                52 views
                0 likes
                Last Post seqadmin  
                Working...
                X