Unconfigured Ad

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • cmm8cmm8
    Junior Member
    • Nov 2008
    • 9

    #1

    SNP Analysis

    Has anyone used any SNP analysis pipelines other than the standard variant pipeline? Any suggestions on good ones to try?
  • cmm8cmm8
    Junior Member
    • Nov 2008
    • 9

    #2
    A truly brilliant question cmm8cmm8. Kudos. I was wondering exactly the same thing.

    Comment

    • manoj.b
      Member
      • Feb 2009
      • 11

      #3
      Originally posted by cmm8cmm8 View Post
      Has anyone used any SNP analysis pipelines other than the standard variant pipeline? Any suggestions on good ones to try?
      We use most of the libraries from bioconductors.

      The Bioconductor project aims to develop and share open source software for precise and repeatable analysis of biological data. We foster an inclusive and collaborative community of developers and data scientists.


      Here you will find all possible libraries for several platforms like Affy, Agilent, Illumina..

      I hope this helps.

      Comment

      • doxologist
        Member
        • Jan 2009
        • 96

        #4
        Originally posted by manoj.b View Post
        We use most of the libraries from bioconductors.

        The Bioconductor project aims to develop and share open source software for precise and repeatable analysis of biological data. We foster an inclusive and collaborative community of developers and data scientists.


        Here you will find all possible libraries for several platforms like Affy, Agilent, Illumina..

        I hope this helps.
        I think there's a confusion here between SNPs for microarray and SNP detection from sequencing. I believe the Bioconductor packages is for the former and the people were asking for the latter.

        Q: What do you consider as "standard"? Only from the vendors? How about MAQ?

        I'm testing NextGENe currently, which is supposedly designed for SNP detection (well, really for mutation detection). Would love to hear what other people use.

        Comment

        • cmm8cmm8
          Junior Member
          • Nov 2008
          • 9

          #5
          Thanks for the replies. By "standard" I was referring to the variant pipeline that comes with the instrument.

          Comment

          • nilshomer
            Nils Homer
            • Nov 2008
            • 1283

            #6
            For SOLiD data, we use BFAST (admittedly my own aligner) [https://secure.genome.ucla.edu/index.php/BFAST]. The output of that is converted to SAM format (for use with samtools) [http://samtools.sourceforge.net/].

            We then use the MAQ consensus model to call SNPs using samtools, modifying the various parameters (train on known data) to get the correct TPR and FPR for calling hets.

            Nils

            Comment

            • erichpowell
              Member
              • Nov 2009
              • 10

              #7
              Nilshomer,

              I recognize that your data is SOLID, but I was wondering about your method for concensus calling in which you "train on known data" to find the best parameter settings.

              I, too, am interested in doing such a thing. I have a 1M SNP Illumina array and Next-Gen data from the Illumina GA2 on the exome. What type of data did you train on?
              Which parameters did you find needed the most tweaking?
              Did you also find that the number of variants called by MAQ (or Samtools, in your case) was very high? I get >180,000 variants in the cns.filter.snp file when using the parameters from easyrun. This seems like way too many, but I'm having difficulty distinguishing the real things from the false positives.

              Looking forward to hearing your input...

              Comment

              • NextGenSeq
                Senior Member
                • Apr 2009
                • 482

                #8
                We are novice bioinformtacists so use CLC Bio's Genomic Workbench. The DIP (deletion-insertion polymorphism) algorithm works well. The SNP algorithm definitely detects known SNPs and we are optimizing the settings for best sensitivity and specificity. So far if we maximize specificity by looking at the X and Y chromosomes where SNPs should obviously be homozygous for male DNA samples, it reduces sensitivity and we miss too many known SNPs. Relaxing the criteria gives us better sensitivity but we get too many false positives.

                Comment

                • nilshomer
                  Nils Homer
                  • Nov 2008
                  • 1283

                  #9
                  Originally posted by erichpowell View Post
                  Nilshomer,

                  I recognize that your data is SOLID, but I was wondering about your method for concensus calling in which you "train on known data" to find the best parameter settings.

                  I, too, am interested in doing such a thing. I have a 1M SNP Illumina array and Next-Gen data from the Illumina GA2 on the exome. What type of data did you train on?
                  Which parameters did you find needed the most tweaking?
                  Did you also find that the number of variants called by MAQ (or Samtools, in your case) was very high? I get >180,000 variants in the cns.filter.snp file when using the parameters from easyrun. This seems like way too many, but I'm having difficulty distinguishing the real things from the false positives.

                  Looking forward to hearing your input...
                  I would plot an ROC curve based on all of the parameters in samtools at sites that Illumina genotyped as heterozygous assuming no genotyping error (1/10,000 in actuality). I found varying the "-r" parameter to be of most value. Also, further filtering like requiring a variant to be seen on both strand with sufficient coverage and quality helps a lot. We applied all these methods in our paper (self-publicity).

                  Comment

                  • Tuxido
                    Member
                    • Jun 2009
                    • 22

                    #10
                    We use the bioscope software from lifetech which has the dibayes algorithm implemented. If you fiddle a bit with the settings it seems to work quite ok, but we have not yet done any thorough testing.

                    Comment

                    • magarolo
                      Junior Member
                      • Aug 2011
                      • 4

                      #11
                      I have been using CLC to detect SNPs based on two SAM files, but I am having big problems in getting everything running. I was wondering if there is any package in Bioconductor or another free source that I can use?

                      Thanks for your help,

                      Comment

                      • HiroMishima
                        Member
                        • Aug 2009
                        • 15

                        #12
                        Hi,

                        Without using LifeTech's BioScope/LifeScope, I think the following pipeline can be applied to SOLiD data for SNP/indel detection.

                        1) *.csfasta+*.qual / *.XSQ -> SAM/BAM
                        BFAST, BWA, or NovoalignCS

                        2) SAM/BAM -> SNP/indel detection
                        SAM tools or GATK (more accurate)

                        3) Annotation
                        GATK or ANNOVAR

                        I think SAM tools and GATK do not use color-space information to detect SNPs/indels. That is one of the advantage of BioScope/LifeScope.
                        Last edited by HiroMishima; 10-31-2011, 04:44 PM.

                        Comment

                        • alexbmp
                          Member
                          • Oct 2011
                          • 30

                          #13
                          Originally posted by HiroMishima View Post
                          Hi,

                          Without using LifeTech's BioScope/LifeScope, I think the following pipeline can be applied to SOLiD data for SNP/indel detection.

                          1) *.csfasta+*.qual / *.XSQ -> SAM/BAM
                          BFAST, BWA, or NovoalignCS

                          2) SAM/BAM -> SNP/indel detection
                          SAM tools or GATK (more accurate)

                          3) Annotation
                          GATK or ANNOVAR

                          I think SAM tools and GATK do not use color-space information to detect SNPs/indels. That is one of the advantage of BioScope/LifeScope.
                          I was wondering this, too. Thanks for your information!!

                          Comment

                          Latest Articles

                          Collapse

                          • SEQadmin2
                            Beyond CRISPR/Cas9: Understand, Choose, and Use the Right Genome Editing Tool
                            by SEQadmin2



                            CRISPR/Cas9 sparked the gene editing revolution for both research and therapeutics.1 But this system still showed severe issues that limited its applications. The most prominent were the heavy reliance on PAM sequences, delivery limitations, double-stranded breaks that prompt unintended edits and cell death, and editing inefficiency (both in targeting and in knock-in reliability).

                            Despite this, “CRISPR helped turn genome editing from a specialized technique into
                            ...
                            07-31-2026, 11:01 AM
                          • SEQadmin2
                            Proteomic Platforms: How to Choose the Right Analytical Strategy to Improve Detection and Clinical Applications
                            by SEQadmin2


                            Proteomics platforms are evolving rapidly, with advances in mass spectrometry and affinity-based approaches expanding what researchers can detect and at what scale. As the field moves toward deeper proteome coverage and clinical applications, scientists face an increasingly complex landscape of tools. This article will explore how researchers are navigating these choices to find the right platform for their work.

                            The systematic characterization of the human proteome has
                            ...
                            07-20-2026, 11:48 AM
                          • SEQadmin2
                            Advanced Sequencing Platforms Tackle Neuroscience’s Toughest Genomics Problems
                            by SEQadmin2



                            Genomics studies in neuroscience face a special challenge due to the brain’s complexity and scarcity of samples. Mapping changes in cell type and state using conventional next-generation sequencing methods remains challenging. Advances in technologies like single-cell sequencing, spatial transcriptomics, and long-read sequencing have opened the door to deeper studies of the brain and diseases like Alzheimer’s, amyotrophic lateral sclerosis (ALS), and schizophrenia.
                            ...
                            07-09-2026, 11:10 AM

                          ad_right_rmr

                          Collapse

                          News

                          Collapse

                          Topics Statistics Last Post
                          Started by SEQadmin2, Yesterday, 07:41 AM
                          0 responses
                          11 views
                          0 reactions
                          Last Post SEQadmin2  
                          Started by SEQadmin2, 08-03-2026, 10:13 AM
                          0 responses
                          25 views
                          0 reactions
                          Last Post SEQadmin2  
                          Started by SEQadmin2, 07-31-2026, 02:55 AM
                          0 responses
                          38 views
                          0 reactions
                          Last Post SEQadmin2  
                          Started by SEQadmin2, 07-24-2026, 12:17 PM
                          0 responses
                          25 views
                          0 reactions
                          Last Post SEQadmin2  
                          Working...