From e97358a3746be1769092a0cf341a1bee91f1a6e2 Mon Sep 17 00:00:00 2001 From: MattWellie Date: Mon, 5 Aug 2024 12:34:00 +0800 Subject: [PATCH] comment bump --- src/talos/HPOFlagging.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/talos/HPOFlagging.py b/src/talos/HPOFlagging.py index d31ad026..2d8b12eb 100644 --- a/src/talos/HPOFlagging.py +++ b/src/talos/HPOFlagging.py @@ -83,6 +83,7 @@ def find_genes_in_these_results(result_object: ResultData) -> set[str]: ensgs.add(variant.var_data.info['gene_id']) # for structural variants, add all the LOF'd genes + # TODO (mwelland): if/when we create other SV categories, we may need to catch those here too if lof := variant.var_data.info.get('predicted_lof'): ensgs.update(set(lof.split(',')))