Seqanswers Leaderboard Ad

Collapse

Announcement

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

  • WHEN to merge data from single library run on multiple lanes?

    Hi

    Even after reading several posts, I'm still confused about merging data from multiple lanes...

    I've got a single library run on four lanes (each library run with several other libraries in a given lane but the paired-end fastq files are already separated by library). My goal is to generate a single consensus sequence of the mitochondria for each library.

    My overall pipeline for trimmed reads consists of 1) alignment to the reference with BWA mem 2) convert sam to bam 3) sorting with Piccard tools 4) removing duplicates with Piccard tools 5) removing ambiguous reads with samtools and 6) then splitting the bam file into separate nuclear and mitochondrial bams (using samtools).

    I'm specifically wondering if there are any problems with merging the resulting mitochondrial bams from running this pipeline separately for each lane? Or should I be merging the data from the four lanes at an earlier step?

    Also, I'm really confused about the concept of @RGs and @SQ...Is a RG simply the bam version of SQ? I was thinking of using samtools merge with the -r parameter specified...does this replace the original RGs somehow? How does the RG effect things downstream (for me I'm eventually generating an mpileup file and then a consensus sequence...).

    Thanks in advance for the help!

  • #2
    You can pretty much always merge data from a single library run on multiple lanes, since they should have the same biases. If you really wanted, you could align them separately and then give them different PL identifier, though practically speaking I kind of doubt that's normally all that useful (any weird bias that you'll want to filter on should be library, rather than lane, specific, though I'm sure someone has a counter example).

    Unless you have very few reads per sample per lane then it makes little practical difference when you merge things. The only benefit to merging before alignment is that you might get a better estimate of the template length distribution, though unless you really really heavily multiplex I doubt you get much of any difference.

    BTW, BAM files have @SQ lines and SAM files also have @RG lines. The @SQ lines describe reference sequences (names and lengths). These will be the same in all of your samples. The @RG lines describe sample metainformation that you can then keep along with your alignments for post-processing. The nice thing is that you can merge files with different read groups and that information is then preserved (the alignments themselves RG auxiliary tags).

    Yes, the -r flag will replace read groups with something that's likely less useful for you.

    Comment


    • #3
      Originally posted by jullee View Post
      My overall pipeline for trimmed reads consists of 1) alignment to the reference with BWA mem 2) convert sam to bam 3) sorting with Piccard tools 4) removing duplicates with Piccard tools 5) removing ambiguous reads with samtools and 6) then splitting the bam file into separate nuclear and mitochondrial bams (using samtools).

      I'm specifically wondering if there are any problems with merging the resulting mitochondrial bams from running this pipeline separately for each lane? Or should I be merging the data from the four lanes at an earlier step?
      You would definitely want to merge the aligned reads (BAM) before doing duplicate removal. Duplicate removal tools need to know about all reads in your data set to work properly. Also, if you are only interested in the mitochondrial reads it pays to reduce your data set to mitochondria only as soon as is practical, to avoid unnecessary computation. Here is what I would do:

      - Align each lane to reference.
      - Convert output to BAM, sort and index these BAM files.
      - Separate nuclear and mito alignments, keeping only uniquely mapped reads in each case (as you described "removing ambiguous reads").
      - Merge your mito BAM files.
      - Deduplicate your merged, mito BAM file.

      Comment


      • #4
        Thanks for the replies.

        kmcarr does it hurt to do the removal of duplicates twice? I'm thinking the first round takes care of PCR artifacts (e.g. library effects), the second sequencing artifacts (e.g. lane effects)?

        Also do I need to index again after the bam files are merged?

        Thanks!

        Comment


        • #5
          Originally posted by jullee View Post
          Thanks for the replies.

          kmcarr does it hurt to do the removal of duplicates twice? I'm thinking the first round takes care of PCR artifacts (e.g. library effects), the second sequencing artifacts (e.g. lane effects)?
          No, it really doesn't make sense to run de-duplication twice. If by "lane effects" you mean optical duplicates it is true that to detect these you only need the reads from each lane, but these are pretty rare. De-duplication is really all about removing PCR duplicates and PCR duplicates can only be identified if you have all of the reads from a given library together in a single, coordinate sorted BAM file.

          Originally posted by jullee View Post
          Also do I need to index again after the bam files are merged?

          Thanks!
          Yes(*), because your merged BAM is a completely new file and needs a new index.

          (*) I say yes assuming that you will be performing some task further downstream which relies on having a BAM index present, which is just about any task.

          Comment


          • #6
            Thanks kmcarr! Your response was very helpful!

            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
            8 views
            0 likes
            Last Post seqadmin  
            Started by seqadmin, 10-01-2024, 07:10 AM
            0 responses
            14 views
            0 likes
            Last Post seqadmin  
            Started by seqadmin, 09-30-2024, 08:33 AM
            0 responses
            18 views
            0 likes
            Last Post seqadmin  
            Started by seqadmin, 09-26-2024, 12:57 PM
            0 responses
            16 views
            0 likes
            Last Post seqadmin  
            Working...
            X