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
                  Recent Developments in Metagenomics
                  by seqadmin





                  Metagenomics has improved the way researchers study microorganisms across diverse environments. Historically, studying microorganisms relied on culturing them in the lab, a method that limits the investigation of many species since most are unculturable1. Metagenomics overcomes these issues by allowing the study of microorganisms regardless of their ability to be cultured or the environments they inhabit. Over time, the field has evolved, especially with the advent...
                  09-23-2024, 06:35 AM
                • seqadmin
                  Understanding Genetic Influence on Infectious Disease
                  by seqadmin




                  During the COVID-19 pandemic, scientists observed that while some individuals experienced severe illness when infected with SARS-CoV-2, others were barely affected. These disparities left researchers and clinicians wondering what causes the wide variations in response to viral infections and what role genetics plays.

                  Jean-Laurent Casanova, M.D., Ph.D., Professor at Rockefeller University, is a leading expert in this crossover between genetics and infectious...
                  09-09-2024, 10:59 AM

                ad_right_rmr

                Collapse

                News

                Collapse

                Topics Statistics Last Post
                Started by seqadmin, 10-02-2024, 04:51 AM
                0 responses
                13 views
                0 likes
                Last Post seqadmin  
                Started by seqadmin, 10-01-2024, 07:10 AM
                0 responses
                21 views
                0 likes
                Last Post seqadmin  
                Started by seqadmin, 09-30-2024, 08:33 AM
                0 responses
                25 views
                0 likes
                Last Post seqadmin  
                Started by seqadmin, 09-26-2024, 12:57 PM
                0 responses
                18 views
                0 likes
                Last Post seqadmin  
                Working...
                X