-
How are missing genotypes/alleles (./.) handled? The interface seems to be indicating that it requires all individuals in the family to have called genotypes to successfully search for a variant but wasn't sure if there is additional logic on the backend. Examples for a trio: |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Variants with missing genotypes are not returned in inheritance based queries. None of the scenarios you listed would return the variant (although scenario 3 "dad is 0/1 and affected child is 0/1" will never return in dominant search, regardless of mom's genotype) The relevant backend code is here: https://github.com/broadinstitute/seqr/blob/master/seqr/utils/elasticsearch/constants.py#L20 |
Beta Was this translation helpful? Give feedback.
Variants with missing genotypes are not returned in inheritance based queries. None of the scenarios you listed would return the variant (although scenario 3 "dad is 0/1 and affected child is 0/1" will never return in dominant search, regardless of mom's genotype)
The relevant backend code is here: https://github.com/broadinstitute/seqr/blob/master/seqr/utils/elasticsearch/constants.py#L20