Can anyone help me with normal-only calling for panel of normals with MuTect2.
The code below does not spit any error as well as variants in vcf, except vcf header.
Here is the code:
java -Xmx45g -XX:+AggressiveOpts -jar /nexus/GenomeAnalysisTK-3.5/GenomeAnalysisTK.jar \
-T MuTect2 \
-R /home/ngs/data/ucsc.hg19.fasta \
-I:tumor /nexus/normal.bam \
--dbsnp /home/ngs/data/dbsnp_137.hg19.vcf \
--cosmic /nexus/rshahi/data/CosmicCodingMuts.vcf5 \
--artifact_detection_mode \
--intervals /nexus/NimbV3_target.gatk.interval_list \
-o $HOME/jobout/normal_only.vcf
Thanx,
Rajendra
Brussels
Hi Dan,
Any further suggestions?
Regards,
Maybe try changing your java calling? It's possible something is going on with the JVM. You are passing 45G of RAM and Aggressive Opts to Java. If the BAM file is for a single exome or targeted resequencing experiment (assuming since you're passing a Nimblegen targets list) then 45G is about 10x-20x what is actually needed. If GATK runs out of memory it will throw an error, but if the problem is earlier on with the JVM then it could potentially die silently, especially with the
-XX:+AggressiveOpts
also being passed. That will turn on a whole suite of options and I'm not sure what effect that may have as I have never used it.If neither of those seem to be the case it is hard to diagnose without trying on your same BAM file (or a portion of the BAM file) to diagnose. There doesn't seem to be anything wrong with the command line. When you look at the BAM file in IGV or something can you find obvious variants bye eye that should be called? If you throw the BAM at FreeBayes or another variant caller do you get results then?
@Dan, I tried without XX:+AggressiveOpts argument; still the same problem. But the HaplotypeCaller runs perfect with the same bam and intervals list.
Well I'm stumped. I would suggest you post with the GATK directly. Since MuTect2 is still in Beta you may have come across some sort of bug or edge-case.
@Dan,hanx for your effort. I will update you with some tweaks from Geraldine_VdAuwera (GATK). Cheers!