Seqanswers Leaderboard Ad

Collapse

Announcement

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

  • GATK Questions

    Hello everybody,

    I would appreciate your help to discuss the files to be provided as known indels and known variants for realignment and recalibration steps.
    I am using GATK v3.4.0.

    1. For realignment, as discussed here:

    Discussion of next-gen sequencing related bioinformatics: resources, algorithms, open source efforts, etc

    it is possible to provide several known indels datasets.
    The most widely used files seem to be:
    ftp://ftp.broadinstitute.org/bundle/...9.sites.vcf.gz
    and
    ftp://ftp.broadinstitute.org/bundle/...9.sites.vcf.gz

    I wonder if the second file does not include most of indels in the first file?

    As mentionned by Rocketknight,
    The Mills and 1000G gold standard indels are a very stringently curated list of indels. For the purposes of indel realignment in GATK you probably want one or more of the broader sets from the GATK bundle instead, though which ones I'm not completely sure.
    Which file is less stringent? 1000G_phase1.indels.hg19.sites.vcf?

    Code:
    java -jar GenomeAnalysisTK.jar \ 
        -T RealignerTargetCreator \ 
        -R reference.fa \ 
        -I dedup_reads.bam \ 
        [I]-known 1000G_phase1.indels.hg19.sites.vcf \ [/I]   
        [I]-known Mills_and_1000G_gold_standard.indels.hg19.sites.vcf \ [/I]   
        -o realignment_targets.list
    Should these datasets be provided in the next step too? If yes, why?
    Code:
    java -jar GenomeAnalysisTK.jar \
      -T IndelRealigner \
      -I dedup_reads.bam \
      -R reference.fa \
      -targetIntervals realignment_targets.list \
      -o realignedBam.bam \
      [I]-known 1000G_phase1.indels.hg19.sites.vcf \ [/I]   
      [I]-known Mills_and_1000G_gold_standard.indels.hg19.sites.vcf \ [/I]
    Can java -jar GenomeAnalysisTK.jar -T IndelRealigner be multithreaded with -nt or -nct options?

    2. For recalibration, both SNV and indels datasets should be provided.
    Can I use both indels datasets previously used for realignment and the last dbSNP release for the SNV?

    Code:
    java -jar GenomeAnalysisTK.jar \ 
        -T BaseRecalibrator \
        -l INFO \
        -R reference.fa \ 
        -I realigned_reads.bam \ 
        -knownSites dbsnp144.vcf \ 
        -knownSites 1000G_phase1.indels.hg19.sites.vcf \ 
        -knownSites Mills_and_1000G_gold_standard.indels.hg19.sites.vcf \ 
        -cov ReadGroupCovariate -cov QualityScoreCovariate -cov CycleCovariate
        -o recal_data.table
    Code:
    java -jar GenomeAnalysisTK.jar \
        -l INFO \
        -T PrintReads \
        -R reference.fa \
        -I realigned_reads.bam \
        -BQSR recal_data.table \
        -o realigned.fixed.recal.bam
    Can java -jar GenomeAnalysisTK.jar -T PrintReads be multithreaded with -nt or -nct options?

    Thank you for your help
    Jane
    Last edited by GenoMax; 12-09-2015, 06:43 AM. Reason: Moved to a new thread

Latest Articles

Collapse

  • seqadmin
    Latest Developments in Precision Medicine
    by seqadmin



    Technological advances have led to drastic improvements in the field of precision medicine, enabling more personalized approaches to treatment. This article explores four leading groups that are overcoming many of the challenges of genomic profiling and precision medicine through their innovative platforms and technologies.

    Somatic Genomics
    “We have such a tremendous amount of genetic diversity that exists within each of us, and not just between us as individuals,”...
    05-24-2024, 01:16 PM
  • seqadmin
    Recent Advances in Sequencing Analysis Tools
    by seqadmin


    The sequencing world is rapidly changing due to declining costs, enhanced accuracies, and the advent of newer, cutting-edge instruments. Equally important to these developments are improvements in sequencing analysis, a process that converts vast amounts of raw data into a comprehensible and meaningful form. This complex task requires expertise and the right analysis tools. In this article, we highlight the progress and innovation in sequencing analysis by reviewing several of the...
    05-06-2024, 07:48 AM

ad_right_rmr

Collapse

News

Collapse

Topics Statistics Last Post
Started by seqadmin, 06-03-2024, 06:55 AM
0 responses
12 views
0 likes
Last Post seqadmin  
Started by seqadmin, 05-30-2024, 03:16 PM
0 responses
25 views
0 likes
Last Post seqadmin  
Started by seqadmin, 05-29-2024, 01:32 PM
0 responses
29 views
0 likes
Last Post seqadmin  
Started by seqadmin, 05-24-2024, 07:15 AM
0 responses
215 views
0 likes
Last Post seqadmin  
Working...
X