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
    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...
    Today, 07:48 AM
  • seqadmin
    Essential Discoveries and Tools in Epitranscriptomics
    by seqadmin




    The field of epigenetics has traditionally concentrated more on DNA and how changes like methylation and phosphorylation of histones impact gene expression and regulation. However, our increased understanding of RNA modifications and their importance in cellular processes has led to a rise in epitranscriptomics research. “Epitranscriptomics brings together the concepts of epigenetics and gene expression,” explained Adrien Leger, PhD, Principal Research Scientist...
    04-22-2024, 07:01 AM

ad_right_rmr

Collapse

News

Collapse

Topics Statistics Last Post
Started by seqadmin, Today, 07:17 AM
0 responses
11 views
0 likes
Last Post seqadmin  
Started by seqadmin, 05-02-2024, 08:06 AM
0 responses
19 views
0 likes
Last Post seqadmin  
Started by seqadmin, 04-30-2024, 12:17 PM
0 responses
20 views
0 likes
Last Post seqadmin  
Started by seqadmin, 04-29-2024, 10:49 AM
0 responses
28 views
0 likes
Last Post seqadmin  
Working...
X