Unconfigured Ad

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts
  • sirmark
    Member
    • Feb 2013
    • 24

    [general question]gatk, dindel, IGV

    Hi all!
    I'm newbie to analyzing NGS data and I'm not a biologist.

    I'm very confused, and I have some question and hope that you can give me simple answer:

    1th
    Dindel is the GATK algorithm for indel calling ? If not, what do GATK use for indel calling and what is GATK algorithm for indel calling ?

    2th:
    IGV is a genomic viewer, that can show how shortreads alignment to reference genome, e.g.:


    IGV use samtools to do counting, and other analysis on NGS data ?
    if not: are samtools and IGV two tool indipendent ?

    Sorry for my silly question...
  • bruce01
    Senior Member
    • Mar 2011
    • 160

    #2
    1: Dindel is a standalone software to call indels: http://www.sanger.ac.uk/resources/software/dindel/. GATK uses UnifiedGenotyper to call indels (as well as SNPs).

    2:IGV does not use Samtools afaik. You need to specify 'other analysis'. If you are here you should know at least what analysis you need to do.

    Comment

    • vdauwera
      Member
      • Apr 2012
      • 43

      #3
      Yeah, you're confused alright, but we're here to help ;-)

      1) Dindel and GATK are separate things -- As far as I know Dindel is a single tool focused on calling indels, whereas GATK is a toolbox with many tools including some that do indel calling.

      You can find details on GATK tools here: http://www.broadinstitute.org/gatk/guide/

      In a nutshell, GATK has two separate tools to call indels: UnifiedGenotyper and HaplotypeCaller. HaplotypeCaller is newer and more sensitive for indels than UnifiedGenotyper. Eventually it will replace UG completely.

      2) IGV is mainly a genome viewer. IGV is developed at the same place as GATK (Broad Institute) so they work well together. I work in the group that develops GATK, and we use IGV all the time to look at the sequence data we work with.

      Samtools is a different toolbox, developed elsewhere. It includes many useful tools, some of which we use to complement the GATK. It also includes a variant caller called mpileup. The alogrithms used by mpileup and by GATK's UnifiedGenotyper are similar because Heng Li, the author of mpileup, helped with the original design of the UGs algorithm, if I remember correctly.

      Since you are new to NGS analysis, I recommend you watch the introduction videos we provide here:



      I hope that will help you understand better.

      If you decide to work with GATK, feel free to ask questions in our support forum here:



      Good luck!

      Comment

      • sirmark
        Member
        • Feb 2013
        • 24

        #4
        Originally posted by bruce01 View Post
        1: Dindel is a standalone software to call indels: http://www.sanger.ac.uk/resources/software/dindel/. GATK uses UnifiedGenotyper to call indels (as well as SNPs).

        2:IGV does not use Samtools afaik. You need to specify 'other analysis'. If you are here you should know at least what analysis you need to do.
        for other analysis I mean always indel calling.
        Do IGV do indel calling ?


        About GATK why is it possible to use DINDEL with -glm option ?

        thanks for help!

        Comment

        • vdauwera
          Member
          • Apr 2012
          • 43

          #5
          No, IGV does not do indel calling.

          It is no longer possible to use -glm DINDEL with newer versions of GATK. Much older versions did have that mode because the original indel calling model was inspired by the standalone tool DINDEL. But now the model is completely different.

          You should really use the latest version of GATK in order to get quality results for indel calling.

          Comment

          • sirmark
            Member
            • Feb 2013
            • 24

            #6
            Originally posted by vdauwera View Post
            Yeah, you're confused alright, but we're here to help ;-)

            1) Dindel and GATK are separate things -- As far as I know Dindel is a single tool focused on calling indels, whereas GATK is a toolbox with many tools including some that do indel calling.

            You can find details on GATK tools here: http://www.broadinstitute.org/gatk/guide/

            In a nutshell, GATK has two separate tools to call indels: UnifiedGenotyper and HaplotypeCaller. HaplotypeCaller is newer and more sensitive for indels than UnifiedGenotyper. Eventually it will replace UG completely.

            2) IGV is mainly a genome viewer. IGV is developed at the same place as GATK (Broad Institute) so they work well together. I work in the group that develops GATK, and we use IGV all the time to look at the sequence data we work with.

            Samtools is a different toolbox, developed elsewhere. It includes many useful tools, some of which we use to complement the GATK. It also includes a variant caller called mpileup. The alogrithms used by mpileup and by GATK's UnifiedGenotyper are similar because Heng Li, the author of mpileup, helped with the original design of the UGs algorithm, if I remember correctly.

            Since you are new to NGS analysis, I recommend you watch the introduction videos we provide here:



            I hope that will help you understand better.

            If you decide to work with GATK, feel free to ask questions in our support forum here:



            Good luck!
            thank you very very much, I'm confused less!

            I actually use IGV to see alignment of my BAM file to reference genome hg19.
            To indel calling, I visualize manually each entire chromosome.

            I'm finding a way in IGV to find the indel position for entire my bam file and for all chromosome not manually. Is it possible in IGV or is it necessary to use tool as: gatk, samtools ?

            Last question: what's the role of igvtools ?

            Comment

            • sirmark
              Member
              • Feb 2013
              • 24

              #7
              thank you very very much, I'm confused less!

              I actually use IGV to see alignment of my BAM file to reference genome hg19.
              To indel calling, I visualize manually each entire chromosome.

              I'm finding a way in IGV to find the indel position for entire my bam file and for all chromosome not manually. Is it possible in IGV or is it necessary to use tool as: gatk, samtools ?

              Last question: what's the role of igvtools ?

              Comment

              • vdauwera
                Member
                • Apr 2012
                • 43

                #8
                I strongly suggest you use a dedicated indel calling tool rather than try to identify indels manually. As far as I know GATK's HaplotypeCaller gives the best results for indels, but others may have different opinions (since I work on GATK, I may be biased).

                IGVtools are utilities that can convert some formats or count some basic statistics on your dataset. They are useful for these tasks but are not a replacement for variant calling tools.

                Comment

                • sirmark
                  Member
                  • Feb 2013
                  • 24

                  #9
                  ok! I understand.

                  in your opinion, in case of pooled samples, which tools are the best ?
                  I'm finding an article with compared to evaluate this.

                  Comment

                  • vdauwera
                    Member
                    • Apr 2012
                    • 43

                    #10
                    HaplotypeCaller cannot handle pooled samples yet, so for now you should use UnifiedGenotyper.

                    Comment

                    • sirmark
                      Member
                      • Feb 2013
                      • 24

                      #11
                      just some questions :
                      dindel is only for indel or also for snp ?

                      is there a reference/publication that compare different snp calling algorithms ?
                      Last edited by sirmark; 03-13-2013, 07:34 AM.

                      Comment

                      Latest Articles

                      Collapse

                      • 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
                      • SEQadmin2
                        Cancer Drug Resistance: The Lingering Barrier to Rising Survival
                        by SEQadmin2



                        Cancer survival rates have significantly increased in the last few decades in the United States, reaching a combined 70% 5-year survival rate by 2021. Behind this number, there are years of research to find new therapies, drug targets, and early detection methods. But there is one core challenge that keeps slowing down these advances, and it’s about drug resistance.

                        There is no single reason why many patients don’t respond to treatment as expected. Cancer is...
                        07-08-2026, 05:17 AM

                      ad_right_rmr

                      Collapse

                      News

                      Collapse

                      Topics Statistics Last Post
                      Started by SEQadmin2, 07-24-2026, 12:17 PM
                      0 responses
                      22 views
                      0 reactions
                      Last Post SEQadmin2  
                      Started by SEQadmin2, 07-23-2026, 11:41 AM
                      0 responses
                      19 views
                      0 reactions
                      Last Post SEQadmin2  
                      Started by SEQadmin2, 07-20-2026, 11:10 AM
                      0 responses
                      26 views
                      0 reactions
                      Last Post SEQadmin2  
                      Started by SEQadmin2, 07-13-2026, 10:26 AM
                      0 responses
                      38 views
                      0 reactions
                      Last Post SEQadmin2  
                      Working...