Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

KBDEV-1259 disabling some annotation tests #38

Merged
merged 2 commits into from
Oct 31, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions tests/test_ipr/test_annotate.py
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,9 @@ def test_annotate_structural_variants_tp53(self, graphkb_conn):
for key, alt_rep in TP53_MUT_DICT.items():
if key == ref_key:
continue
if key in ('cds_only', 'genome_only'):
# KBDEV-1259. Temporarely disabled until issue resolution.
continue
alt = annotate_positional_variants(graphkb_conn, [alt_rep], disease)
alt_vars = set([m["kbVariant"] for m in alt])
diff = pref_vars.symmetric_difference(alt_vars)
Expand Down
Loading