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
    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
  • seqadmin
    Current Approaches to Protein Sequencing
    by seqadmin


    Proteins are often described as the workhorses of the cell, and identifying their sequences is key to understanding their role in biological processes and disease. Currently, the most common technique used to determine protein sequences is mass spectrometry. While still a valuable tool, mass spectrometry faces several limitations and requires a highly experienced scientist familiar with the equipment to operate it. Additionally, other proteomic methods, like affinity assays, are constrained...
    04-04-2024, 04:25 PM

ad_right_rmr

Collapse

News

Collapse

Topics Statistics Last Post
Started by seqadmin, 04-11-2024, 12:08 PM
0 responses
59 views
0 likes
Last Post seqadmin  
Started by seqadmin, 04-10-2024, 10:19 PM
0 responses
57 views
0 likes
Last Post seqadmin  
Started by seqadmin, 04-10-2024, 09:21 AM
0 responses
53 views
0 likes
Last Post seqadmin  
Started by seqadmin, 04-04-2024, 09:00 AM
0 responses
56 views
0 likes
Last Post seqadmin  
Working...
X