Seqanswers Leaderboard Ad

Collapse

Announcement

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

  • SNP calling for captured sequence data

    Hi All
    I am currently analysing captured sequence data (DNA sequencing using illumina platform), with the aim of finding somatic mutations.
    Can you please advice on the following issues:
    1. Shall I align the reads to the captured gene sequences or to the whole genome (and then select for those reads that fall within interesting regions)?
    2. Is it important to remove duplicated reads before SNP calling? duplicated reads can be due to PCR artifact, but since I deal with captured data maybe there is higher chance to get duplicated reads?
    For example for one SNP, before removing duplicated reads I get 515 reads supporting that region, but after removing duplicates, this number dropped to only 4 reads.
    3. Would you recommend to filter out SNPs are indicated only from one strand?
    Thanks
    Mali

  • #2
    Hi mali,

    1) We do alignment to the whole genome (that gives you hints about enrichment quality, e.g. counts of on- and off-target reads)

    2) If you are looking for somatic mutations I would get rid of PCR duplicates before SNP calling. I actually do not know anything about your experimental setup, but if you expect mutations in low frequency (due to contamination of cell populations not carrying the mutation as in tumours) this is an important step. If you've git paired-end data duplication detection is a lot easier as PCR duplicates would have the same start and end for both mates, which rarely occurs by chance.

    There is definitely a higher chance of duplicated reads in captured DNA (keeping in mind that each enrichment contains amplification steps)

    3) As far as I know SNPs indicated only on one strand ar nearly all false positives, but any corrections welcome.

    Just out of curiosity: When you check somatic mutations, are you interested in quantitating them as well (e.g. tumorgenetics: how many percent of the input samples derived from tumour)?

    Comment


    • #3
      Hi,

      1. The danger of aligning to only a certain region is that the aligner will try to find a spot for all reads in that region. This means that reads that do not belong there will be placed there. So if you do decide to align to only a region, make sure you use very strict settings. (for example: CLCBio cannot handle aligning HiSeq exome reads to the entire genome, so we have no choice but to align per chromosome) Long story short: align to the entire genome (supercontigs included if any) if that is computationally possible.

      2. We flag duplicates (Picard MarkDuplicates) but do not remove them. Our downstream analysis tools (GATK, SAMTools, Picard) recognises the flags.

      3. in some situations, that may cause you to lose true positive variants. Perhaps you can flag those cases. If such a variant seems very interesting (because it passes all kinds of other filtersteps) you can always go back to eyeballing it.

      These are very interesting issues and I'd like to read other people's methods and opinions too!

      Comment


      • #4
        Regarding the strand bias thing:
        GATK SNP calling outputs the SB value in it's VCF output format, but does anyone know, a threshold value when to regard a SNP as strand biased?

        Comment


        • #5
          Originally posted by ulz_peter View Post
          Regarding the strand bias thing:
          GATK SNP calling outputs the SB value in it's VCF output format, but does anyone know, a threshold value when to regard a SNP as strand biased?
          I do sequencing of target enrichment for genes, looking for somatic mutations.

          For 1000 targeted genes, I get ~80X median coverage per target bp before marking duplicates (drops down to 40X afterwards).

          These are the "hard filters" I use for GATK SNP calling:

          --clusterWindowSize 20
          --filterExpression "MQ0 >= 4 && ((MQ0 / (1.0 * DP)) > 0.1)"
          --filterName "HARD_TO_VALIDATE"
          -B:mask,Bed,$sampleID.indel.mask.bed
          --maskName InDel
          --filterExpression "QUAL < 30.0 || DP < 5 || QD < 1.5 || HRun > 5 || SB > -10.0 || MQ < 25.0"
          --filterName StdFilter
          --filterExpression "DP < 8 || QD < 2.5"
          --filterName LowConf

          Comment


          • #6
            Thank you guys for your reply.
            The data I have are from people the carry a known heterozygous mutation, and we want to check if we can find this mutation using capture+sequencing. We also expect to have contamination of cell populations not carrying the mutation, so if I understand you correctly, removing/flag duplicated reads is an important step.
            Regarding MarkDuplicates, samtools will ignore flagged duplicated reads right? so I expect to get the same SNPs if I remove duplicates or flag them.

            Comment


            • #7
              Hi all,

              Sorry to resurrect an old thread but there's something I don't understand RE strand bias.

              When we mention strand biased SNPs I am assuming we mean instances when the mutation appears on one strand, but not the other.

              However the original post is about captured DNA data. SO far as I am aware, the capture process will only probe one strand - so how would we even be aware of strand biased SNPs in a set-up like this?

              Responses would be GREATLY appreciated as I am designing a similar experiment and this has me stumped.

              Cheers

              Afterthought: The capture can probe the forward strand or the reverse strand but not both together as the baits will hybridise to one another during synthesis. Does this mean that two completely separate capture/sequencing processes would be required to capture both strands and discover strand biased SNPs?
              Last edited by gavin.oliver; 05-04-2011, 02:19 AM.

              Comment


              • #8
                As I understood it (from the experimentalist who did the capturing), the baits probe one strand but next there was a PCR amplification step (using the adapter indexes), so the sequenced fragments are not strand specific.
                So if I understand it correctly, the steps were as follow:
                1. Library preparation (DNA fragmentation + adapters ligation)
                2. Hybridisation with RNA baits (Myselect)
                3. PCR amplification
                Mali

                Comment


                • #9
                  I'm a bit dumb when it comes to lab protocols, but doesn't that mean you would just be creating the reverse complement of the strand you captured, and then sequencing it?

                  Thus, the true genomic complement (perhaps containing a strand biased polymorphism) is still lost?

                  Comment


                  • #10
                    Hi all - does anyone have any thoughts on my question? Surely it's not so difficult

                    Comment


                    • #11
                      Originally posted by gavin.oliver View Post
                      Hi all - does anyone have any thoughts on my question? Surely it's not so difficult
                      .
                      If understand correctly, you can just capture either strand because one strand will hold the polymorphism, while the other will have the reverse complement of that polymorphism.

                      Strand bias is just a PCR artifact - not an inherent characteristic of the genome your probing.
                      Last edited by NGSfan; 05-05-2011, 12:16 AM.

                      Comment


                      • #12
                        I suppose they used both forward and reverse adapters as primers for PCR, so you get fragments from both strands
                        Mali

                        Comment


                        • #13
                          Originally posted by NGSfan View Post
                          .
                          Strand bias is just a PCR artifact - not an inherent characteristic of the genome your probing.
                          Unless I am mistaken, mutations can be induced during genomic strand separation/transcription. These will only occur on one of the two genomic strands. Hence, a mutation that is only present on one of the two strands. The opposite strand at this genomic location will still appear normal.

                          This single strand capture method would fail to detect instances like these.

                          Comment


                          • #14
                            Yes, mutations could happen during genomic strand separation and/or transcription. I would assume that the DNA mismatch repair machinery would pick up on these and fix the daughter strands


                            Maybe my assumptions are not valid for the kind of analysis you are doing? Are you looking at defects in mismatch repair?

                            Comment


                            • #15
                              Not specifically. I am just trying to confirm that mutations of this kind could not be picked up using a strand-specific capture.

                              Simply for my own knowledge

                              Comment

                              Latest Articles

                              Collapse

                              • 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
                              • seqadmin
                                Techniques and Challenges in Conservation Genomics
                                by seqadmin



                                The field of conservation genomics centers on applying genomics technologies in support of conservation efforts and the preservation of biodiversity. This article features interviews with two researchers who showcase their innovative work and highlight the current state and future of conservation genomics.

                                Avian Conservation
                                Matthew DeSaix, a recent doctoral graduate from Kristen Ruegg’s lab at The University of Colorado, shared that most of his research...
                                03-08-2024, 10:41 AM

                              ad_right_rmr

                              Collapse

                              News

                              Collapse

                              Topics Statistics Last Post
                              Started by seqadmin, Yesterday, 06:37 PM
                              0 responses
                              8 views
                              0 likes
                              Last Post seqadmin  
                              Started by seqadmin, Yesterday, 06:07 PM
                              0 responses
                              8 views
                              0 likes
                              Last Post seqadmin  
                              Started by seqadmin, 03-22-2024, 10:03 AM
                              0 responses
                              49 views
                              0 likes
                              Last Post seqadmin  
                              Started by seqadmin, 03-21-2024, 07:32 AM
                              0 responses
                              67 views
                              0 likes
                              Last Post seqadmin  
                              Working...
                              X