gemini de_novo \
--columns "$COLUMNS" \
--filter "(aaf_gnomad_genome_all <= 0.01) and (confidentregion = 1) and (inhousedb_ac <= 3 or inhousedb_ac is NULL) and (impact_severity == 'HIGH' or impact_severity=='MED')" \
-d 20 \
--min-gq 30 \
$GEMINIDB > $DENOVO_OUT
python $TableAnnotator -i $DENOVO_OUT -o ${DENOVO_OUT}_annotated.txt
bcftools view -i 'MIN(FMT/DP)>10 & MIN(FMT/GQ)>15' my.vcf.gz
Hi, this is not possible directly, but you can output gt_alt_depths in
the result and filter on that.
-Brent
NORMFILTERVCF=$WORKING_DIR${FAMILY_ID}.merged.hc.norm.filter.vcf.gz/opt/tools/bcftools-1.8/bin/bcftools filter \
--include 'FORMAT/AD[0:1]>=3 && FORMAT/DP[0] < 300' \
-m + \
-s + \
-O z \
--output $NORMFILTERVCF \
$NORMVCF