From cbed60afdb1ce94b2b3b486b1175c934251b0408 Mon Sep 17 00:00:00 2001 From: Manuel Holtgrewe Date: Tue, 6 Feb 2024 16:10:25 +0100 Subject: [PATCH] fix: remove requirement of genes having HPO terms (bihealth/reev#447) --- src/stores/seqvarInfo/store.ts | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/stores/seqvarInfo/store.ts b/src/stores/seqvarInfo/store.ts index fdceee7..24ad768 100644 --- a/src/stores/seqvarInfo/store.ts +++ b/src/stores/seqvarInfo/store.ts @@ -97,9 +97,6 @@ export const useSeqvarInfoStore = defineStore('seqvarInfo', () => { geneClinvar.value = data }), vigunoClient.fetchHpoTermsForHgncId(hgncId).then((data) => { - if (!data.result.length) { - throw new Error('No HPO terms found.') - } hpoTerms.value = data.result }) ])