Entering edit mode
23 months ago
octpus616
▴
120
Hi
I am using following command to run gatk haplotypeCaller
{params.gatk_path} {params.gatk_params} HaplotypeCaller \
-R ${{ref}} \
-I {input.bam} \
-O {output.gvcf} \
-ERC GVCF \
-G StandardAnnotation \
-G AS_StandardAnnotation \
-L {params.chr_num} \
--native-pair-hmm-threads {threads} \
--output-mode EMIT_ALL_ACTIVE_SITES
I expected the following:
- output all callable site even if they are homozygous as ref
- output
(RMS) MQ
,DP
for all site outputed
I find that point 1 is ok, but the gvcf file miss MQ
for sites homozygous as ref (non variant sites).
Can I update some params to fix this question?
yeah I have apply
GenotypeGVCFs
in next step, butGenotypeGVCFs
cant output vcf withMQ
because gvcf dont have this fields for non variant sites