Thanks for the help Khare :)
Its does really matter if you use gvcf format instead vcf? I thought was the same. Will try with -ERC GVCF option. and see if I get any different result. Thanks for the advice.
If I use Varscan using mpileup at the end I get similar results. I am just a bit surprised didnt appear any low or high De novo variants using Gatk.
"Can you confirm that following steps were followed after hard filtration?"
I do. I perform this pipeline after doing hard filtration (I only select snps variants atm Im not interested on indels)
CombineVariants
java -jar GenomeAnalysisTK.jar -T CombineVariants -R hg38.fa --variant 04PASS.vcf --variant 06PASS.vcf --variant 08PASS.vcf -o 468mergedPASS.vcf -genotypeMergeOptions UNIQUIFY
Convert to biallelic, If I dont perform those steps gatk gives me error.
java -jar GenomeAnalysisTK.jar -T SelectVariants -R hg38.fa --variant 468mergedPASS.vcf -restrictAllelesTo BIALLELIC -o bi468merged.vcf
java -jar GenomeAnalysisTK.jar -T SelectVariants -R hg38.fa --variant 1000G_phase1.snps.high_confidence.b37.vcf.gz -restrictAllelesTo BIALLELIC -o 1000G_phase1.snps.high_confidence.b37_BIALLELIC_ONLY.vcf.gz
Step 1: Derive posterior probabilities of genotypes
java -jar GenomeAnalysisTK.jar -R hg38.fa -T CalculateGenotypePosteriors --supporting 1000G_phase1.snps.high_confidence.b37_BIALLELIC_ONLY.vcf.gz -ped fam10.ped -V bi468merged.vcf -o recalibratedVariants.postCGP.vcf
Step 2: Filter low quality genotypes
java -jar GenomeAnalysisTK.jar -T VariantFiltration -R hg38.fa -V recalibratedVariants.postCGP.vcf -G_filter "GQ < 20.0" -G_filterName "lowGQ" -o recalibratedVariants.postCGP.Gfilteredcall.vcf
Step 3: Annotate possible de novo mutations
java -jar GenomeAnalysisTK.jar -T VariantAnnotator -R hg38.fa -V recalibratedVariants.postCGP.Gfilteredcall.vcf -A PossibleDeNovo -ped fam10.ped -o recalibratedVariants.postCGP.Gfiltered.deNovos.vcf
Its possible. But I think following change would help.
HaplotypeCaller-ERC GVCFoption.GenotypeGVCFsSelectVariantsand perform hard filtrationCombineVariantsCan you confirm that following steps were followed after hard filtration?
CalculateGenotypePosteriors. A ped file will have to be provided.VariantFiltrationVariantAnnotatorusing-A PossibleDeNovooption. Again ped file will have to be provided.