Seqanswers Leaderboard Ad

Collapse

Announcement

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

  • Mutect2 tumor-only - missing CHROM, ID, QUAL and FILTER columns in output vcf

    Hi,

    I am a medical student new to NGS. I'm currently trying to count the tumor mutational load from tumor samples (FFPE) to which I have no matched normal tissue. We are using a gene panel of less than 70 genes.

    I have got the fastq files (2 files per sample, paired-end) and I tried to write a script in bash to generate recalibrated bam files ready for use with mutect2.

    However, when I received the output vcf file from mutect2, there are some mutations but there is no information in CHROM, ID, FILTER and QUAL column.
    I am attaching the commands I used. I suppose there might be a problem with alignment, but I failed to recognize where the problem is. As a complete beginner, I suppose maybe I do some kind of systemic error.
    I would be grateful for any kind of hint. THanks.


    Code:
    bwa index -a bwtsw hs37d5.fa | samtools faidx hs37d5.fa | picard CreateSequenceDictionary R=hs37d5.fa O=hs37d5.dict
    
    bwa mem -M  ~/projects/patologie/hs37d5/hs37d5.fa  ~/projects/patologie/01_raw_data/BRCA1_S1_L001_R1_001.fastq ~/projects/patologie/01_raw_data/BRCA1_S1_L001_R2_001.fastq > sample.sam 
    
    samtools view -bS sample.sam > sample.bam
    
    picard SortSam I=sample.bam O=sorted_sample.bam SORT_ORDER=coordinate
    
    picard MarkDuplicates I=sorted_sample.bam O=sample_marked.bam M=marked_metrics.txt ASSUME_SORT_ORDER=coordinate
    
    picard AddOrReplaceReadGroups I=sample_marked.bam  O=sample_rg.bam RGID=1 RGLB=lib1 RGPL=illumina RGPU=unit1 RGSM=1
    
    gatk IndexFeatureFile -F= ~/projects/patologie/reference/1000G_phase1.indels.b37.vcf 
    
    gatk IndexFeatureFile -F= ~/projects/patologie/reference/Mills_and_1000G_gold_standard.indels.b37.vcf 
    
    gatk IndexFeatureFile -F= ~/projects/patologie/reference/dbsnp_138.b37.vcf
    
    gatk BaseRecalibrator -R ~/projects/patologie/hs37d5/hs37d5.fa  -I sample_rg.bam --known-sites ~/projects/patologie/reference/1000G_phase1.indels.b37.vcf --known-sites ~/projects/patologie/reference/dbsnp_138.b37.vcf --known-sites ~/projects/patologie/reference/Mills_and_1000G_gold_standard.indels.b37.vcf -O recal_table
    
    gatk ApplyBQSR -bqsr recal_table -I sample_rg.bam -R ~/projects/patologie/hs37d5/hs37d5.fa -O sample_recal.bam
    
    gatk IndexFeatureFile -F= ~/projects/patologie/reference/af-only-gnomad.raw.sites.b37.vcf
    
    gatk Mutect2 -R ~/projects/patologie/hs37d5/hs37d5.fa -I ~/projects/patologie/analysis2/sample_recal.bam -tumor 1 -O sample_single.vcf --germline-resource ~/projects/patologie/reference/af-only-gnomad.raw.sites.b37.vcf

Latest Articles

Collapse

  • seqadmin
    Best Practices for Single-Cell Sequencing Analysis
    by seqadmin



    While isolating and preparing single cells for sequencing was historically the bottleneck, recent technological advancements have shifted the challenge to data analysis. This highlights the rapidly evolving nature of single-cell sequencing. The inherent complexity of single-cell analysis has intensified with the surge in data volume and the incorporation of diverse and more complex datasets. This article explores the challenges in analysis, examines common pitfalls, offers...
    Yesterday, 07:15 AM
  • 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

ad_right_rmr

Collapse

News

Collapse

Topics Statistics Last Post
Started by seqadmin, Today, 06:58 AM
0 responses
13 views
0 likes
Last Post seqadmin  
Started by seqadmin, Yesterday, 08:18 AM
0 responses
19 views
0 likes
Last Post seqadmin  
Started by seqadmin, Yesterday, 08:04 AM
0 responses
18 views
0 likes
Last Post seqadmin  
Started by seqadmin, 06-03-2024, 06:55 AM
0 responses
13 views
0 likes
Last Post seqadmin  
Working...
X