I want to call denovo variants from trios cohort consisiting of 15 trios (15*3 = 45 samples)
I followed below mentioned steps:
gatk GenomicsDBImport \
-V data/gvcfs/mother.g.vcf \
-V data/gvcfs/father.g.vcf \
-V data/gvcfs/son.g.vcf \
--genomicsdb-workspace-path trio_db \
--intervals intervals.txt
## Select Variants
gatk SelectVariants \
-R /data/ref/grch38.fasta \
-V gendb://trio_db \
-O trio_selectvariants.g.vcf
## Run joint genotyping on the trio
gatk GenotypeGVCFs \
-R /data/ref/grch38.fasta \
-V trio_db \
-O trioGGVCF.vcf \
-L intervals.txt
Do I need to run this on all the trios individually?
Or
Are there any way to do it?
trio
denovo
gatk
germline